Source-Changes-HG archive

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

[src/trunk]: src/sys/fs/unionfs Fix build of fs/unionfs (the extra unused cop...



details:   https://anonhg.NetBSD.org/src/rev/c0d5579ed38a
branches:  trunk
changeset: 782537:c0d5579ed38a
user:      dholland <dholland%NetBSD.org@localhost>
date:      Mon Nov 05 17:16:59 2012 +0000

description:
Fix build of fs/unionfs (the extra unused copy of onionfs) for the
quota changes.

diffstat:

 sys/fs/unionfs/unionfs_vfsops.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r bb6df711db2d -r c0d5579ed38a sys/fs/unionfs/unionfs_vfsops.c
--- a/sys/fs/unionfs/unionfs_vfsops.c   Mon Nov 05 17:16:18 2012 +0000
+++ b/sys/fs/unionfs/unionfs_vfsops.c   Mon Nov 05 17:16:59 2012 +0000
@@ -371,7 +371,7 @@
 }
 
 int
-unionfs_quotactl(struct mount *mp, prop_dictionary_t dict)
+unionfs_quotactl(struct mount *mp, struct quotactl_args *args)
 {
        struct unionfs_mount *ump;
 
@@ -380,7 +380,7 @@
        /*
         * Writing is always performed to upper vnode.
         */
-       return (VFS_QUOTACTL(ump->um_uppervp->v_mount, dict));
+       return (VFS_QUOTACTL(ump->um_uppervp->v_mount, args));
 }
 
 int



Home | Main Index | Thread Index | Old Index