Module Name:    src
Committed By:   manu
Date:           Wed Aug 17 09:29:59 UTC 2011

Modified Files:
        src/sys/kern: vfs_syscalls.c
        src/sys/sys: vfs_syscalls.h

Log Message:
Missing bit in previous commit: do_sys_utimens prototype in the right
place.


To generate a diff of this commit:
cvs rdiff -u -r1.435 -r1.436 src/sys/kern/vfs_syscalls.c
cvs rdiff -u -r1.15 -r1.16 src/sys/sys/vfs_syscalls.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/kern/vfs_syscalls.c
diff -u src/sys/kern/vfs_syscalls.c:1.435 src/sys/kern/vfs_syscalls.c:1.436
--- src/sys/kern/vfs_syscalls.c:1.435	Wed Aug 17 08:31:27 2011
+++ src/sys/kern/vfs_syscalls.c	Wed Aug 17 09:29:59 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: vfs_syscalls.c,v 1.435 2011/08/17 08:31:27 martin Exp $	*/
+/*	$NetBSD: vfs_syscalls.c,v 1.436 2011/08/17 09:29:59 manu Exp $	*/
 
 /*-
  * Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
@@ -70,7 +70,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vfs_syscalls.c,v 1.435 2011/08/17 08:31:27 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vfs_syscalls.c,v 1.436 2011/08/17 09:29:59 manu Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_fileassoc.h"
@@ -117,8 +117,6 @@
 static int change_flags(struct vnode *, u_long, struct lwp *);
 static int change_mode(struct vnode *, int, struct lwp *l);
 static int change_owner(struct vnode *, uid_t, gid_t, struct lwp *, int);
-int	do_sys_utimens(struct lwp *l, struct vnode *vp, const char *path,
-	    int flag, const struct timespec *tptr, enum uio_seg seg);
 
 /*
  * This table is used to maintain compatibility with 4.3BSD

Index: src/sys/sys/vfs_syscalls.h
diff -u src/sys/sys/vfs_syscalls.h:1.15 src/sys/sys/vfs_syscalls.h:1.16
--- src/sys/sys/vfs_syscalls.h:1.15	Sun Jun  5 09:04:22 2011
+++ src/sys/sys/vfs_syscalls.h	Wed Aug 17 09:29:59 2011
@@ -1,4 +1,4 @@
-/*     $NetBSD: vfs_syscalls.h,v 1.15 2011/06/05 09:04:22 dsl Exp $        */
+/*     $NetBSD: vfs_syscalls.h,v 1.16 2011/08/17 09:29:59 manu Exp $        */
 
 /*
  * Copyright (c) 2007, 2008, 2009 The NetBSD Foundation, Inc.
@@ -54,6 +54,8 @@
 
 int do_sys_utimes(struct lwp *, struct vnode *, const char *, int,
     const struct timeval *, enum uio_seg);
+int do_sys_utimens(struct lwp *, struct vnode *, const char *, int flag,
+    const struct timespec *, enum uio_seg);
 
 int	vfs_copyinfh_alloc(const void *, size_t, fhandle_t **);
 void	vfs_copyinfh_free(fhandle_t *);

Reply via email to