diff options
author | 1997-03-09 19:26:05 +0000 | |
---|---|---|
committer | 1997-03-09 19:26:05 +0000 | |
commit | a455f8b25d6809d3d2c0f80f100cd9e716f0a8cb (patch) | |
tree | 98bf9246953c595d03eaad150df7270c8ccad5af | |
parent | deleted SS_Q_VENDOR_SETWINDOW bit. Just check for non-NULL vendor_unique_sw (diff) | |
download | wireguard-openbsd-a455f8b25d6809d3d2c0f80f100cd9e716f0a8cb.tar.xz wireguard-openbsd-a455f8b25d6809d3d2c0f80f100cd9e716f0a8cb.zip |
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 |