diff options
author | wollman <wollman@FreeBSD.org> | 1996-01-05 18:31:58 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1996-01-05 18:31:58 +0000 |
commit | 26b6c4cd7331e712efed0a1b51a7c62d7d6754e0 (patch) | |
tree | 869e7901fd8fd96a54690e2e658f53bf48c25fe3 /sys/fs | |
parent | 1693c596cf67635d3388213259e416f38be4cd0e (diff) | |
download | FreeBSD-src-26b6c4cd7331e712efed0a1b51a7c62d7d6754e0.zip FreeBSD-src-26b6c4cd7331e712efed0a1b51a7c62d7d6754e0.tar.gz |
Convert QUOTA to new-style option.
Diffstat (limited to 'sys/fs')
-rw-r--r-- | sys/fs/msdosfs/msdosfs_vfsops.c | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/sys/fs/msdosfs/msdosfs_vfsops.c b/sys/fs/msdosfs/msdosfs_vfsops.c index 6c1ed69..d3c5281 100644 --- a/sys/fs/msdosfs/msdosfs_vfsops.c +++ b/sys/fs/msdosfs/msdosfs_vfsops.c @@ -1,4 +1,4 @@ -/* $Id: msdosfs_vfsops.c,v 1.9 1995/11/07 14:10:19 phk Exp $ */ +/* $Id: msdosfs_vfsops.c,v 1.10 1995/11/16 11:48:08 bde Exp $ */ /* $NetBSD: msdosfs_vfsops.c,v 1.19 1994/08/21 18:44:10 ws Exp $ */ /*- @@ -469,15 +469,6 @@ mountmsdosfs(devvp, mp, p) mp->mnt_stat.f_fsid.val[0] = (long)dev; mp->mnt_stat.f_fsid.val[1] = MOUNT_MSDOS; mp->mnt_flag |= MNT_LOCAL; -#ifdef QUOTA - /* - * If we ever do quotas for DOS filesystems this would be a place - * to fill in the info in the msdosfsmount structure. You dolt, - * quotas on dos filesystems make no sense because files have no - * owners on dos filesystems. of course there is some empty space - * in the directory entry where we could put uid's and gid's. - */ -#endif devvp->v_specflags |= SI_MOUNTEDON; return 0; @@ -529,8 +520,6 @@ msdosfs_unmount(mp, mntflags, p) return EINVAL; flags |= FORCECLOSE; } -#ifdef QUOTA -#endif error = vflush(mp, NULLVP, flags); if (error) return error; @@ -572,11 +561,7 @@ msdosfs_quotactl(mp, cmds, uid, arg, p) caddr_t arg; struct proc *p; { -#ifdef QUOTA - return EOPNOTSUPP; -#else return EOPNOTSUPP; -#endif } static int |