Source-Changes-HG archive

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

[src/trunk]: src/sys/sys symbolically expand MNT_VISFLAGMASK



details:   https://anonhg.NetBSD.org/src/rev/afd5809da1b5
branches:  trunk
changeset: 555851:afd5809da1b5
user:      dbj <dbj%NetBSD.org@localhost>
date:      Mon Dec 01 18:42:12 2003 +0000

description:
symbolically expand MNT_VISFLAGMASK

diffstat:

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

diffs (25 lines):

diff -r dd5a177468b9 -r afd5809da1b5 sys/sys/mount.h
--- a/sys/sys/mount.h   Mon Dec 01 17:54:41 2003 +0000
+++ b/sys/sys/mount.h   Mon Dec 01 18:42:12 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mount.h,v 1.116 2003/11/18 18:26:18 dbj Exp $  */
+/*     $NetBSD: mount.h,v 1.117 2003/12/01 18:42:12 dbj Exp $  */
 
 /*
  * Copyright (c) 1989, 1991, 1993
@@ -222,7 +222,14 @@
 /*
  * Mask of flags that are visible to statfs()
  */
-#define        MNT_VISFLAGMASK 0xfc10ffff
+#define        MNT_VISFLAGMASK \
+    (MNT_SOFTDEP | MNT_NODEVMTIME | MNT_SYMPERM | MNT_EXPUBLIC | \
+     MNT_EXNORESPORT | MNT_NOATIME | \
+     MNT_IGNORE | \
+     MNT_NOCOREDUMP | MNT_ROOTFS | MNT_QUOTA | MNT_LOCAL | \
+     MNT_EXKERB | MNT_EXPORTANON | MNT_DEFEXPORTED | MNT_EXPORTED | \
+     MNT_EXRDONLY | MNT_ASYNC | MNT_UNION | MNT_NODEV | \
+     MNT_NOSUID | MNT_NOEXEC | MNT_SYNCHRONOUS | MNT_RDONLY)
 
 /*
  * External filesystem control flags.



Home | Main Index | Thread Index | Old Index