diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-03-09 19:26:06 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-03-09 19:26:06 +0000 |
commit | 03370177c57696c2f3c43c9578f8cc5631dbfbbb (patch) | |
tree | a2a5de9bea44580d273d9ec56c0968474c827212 | |
parent | e0a5a04d178d5aee9aee37c0405fcb6e1a6ceabe (diff) |
Move MNT_NOATIME so numbers are consecutive.
-rw-r--r-- | sys/sys/mount.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/sys/mount.h b/sys/sys/mount.h index 43570e0b04a..0cc7364e581 100644 --- a/sys/sys/mount.h +++ b/sys/sys/mount.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mount.h,v 1.14 1997/03/02 09:52:50 millert Exp $ */ +/* $OpenBSD: mount.h,v 1.15 1997/03/09 19:26:05 millert Exp $ */ /* $NetBSD: mount.h,v 1.48 1996/02/18 11:55:47 fvdl Exp $ */ /* @@ -133,7 +133,6 @@ struct mount { #define MNT_NODEV 0x00000010 /* don't interpret special files */ #define MNT_UNION 0x00000020 /* union with underlying filesystem */ #define MNT_ASYNC 0x00000040 /* file system written asynchronously */ -#define MNT_NOATIME 0x00008000 /* don't update atime on files */ /* * exported mount flags. @@ -152,6 +151,11 @@ struct mount { #define MNT_ROOTFS 0x00004000 /* identifies the root filesystem */ /* + * Extra post 4.4BSD-lite2 mount flags. + */ +#define MNT_NOATIME 0x00008000 /* don't update access times on fs */ + +/* * Mask of flags that are visible to statfs() */ #define MNT_VISFLAGMASK 0x0000ffff |