Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-6]: src/sys/sys Pull up following revision(s) (requested by dholl...



details:   https://anonhg.NetBSD.org/src/rev/b0290964d039
branches:  netbsd-6
changeset: 775434:b0290964d039
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Sun Nov 18 18:42:03 2012 +0000

description:
Pull up following revision(s) (requested by dholland in ticket #665):
        sys/sys/mount.h: revision 1.208
Fix the prototype of vfs_quotactl() implementations in VFS_PROTOS(),
since it's wrong there. This slipped by because the only
implementation is in ufs, which isn't under a VFS_PROTOS declaration.

diffstat:

 sys/sys/mount.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 0412770b22b5 -r b0290964d039 sys/sys/mount.h
--- a/sys/sys/mount.h   Sun Nov 18 18:36:58 2012 +0000
+++ b/sys/sys/mount.h   Sun Nov 18 18:42:03 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mount.h,v 1.207 2012/02/01 05:34:42 dholland Exp $     */
+/*     $NetBSD: mount.h,v 1.207.2.1 2012/11/18 18:42:03 msaitoh Exp $  */
 
 /*
  * Copyright (c) 1989, 1991, 1993
@@ -277,7 +277,7 @@
 int    fsname##_start(struct mount *, int);                            \
 int    fsname##_unmount(struct mount *, int);                          \
 int    fsname##_root(struct mount *, struct vnode **);                 \
-int    fsname##_quotactl(struct mount *, int, struct quotactl_args *); \
+int    fsname##_quotactl(struct mount *, struct quotactl_args *);      \
 int    fsname##_statvfs(struct mount *, struct statvfs *);             \
 int    fsname##_sync(struct mount *, int, struct kauth_cred *);        \
 int    fsname##_vget(struct mount *, ino_t, struct vnode **);          \



Home | Main Index | Thread Index | Old Index