diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-03-02 09:52:51 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-03-02 09:52:51 +0000 |
commit | 68e5acbd0f1280e4d2caebfbc01729ae5efffbc6 (patch) | |
tree | 7989839e9f50245de3165e341aca5b08d1f2e071 | |
parent | ba543da8d049867a1a178db878ec6565b671d15a (diff) |
Change MNT_NOATIME to unused value. This backs out the MNT_* renumbering
that will surely hose people who try to run a new kernel on an old
userland.
-rw-r--r-- | sys/sys/mount.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/sys/mount.h b/sys/sys/mount.h index 85aa43e7286..43570e0b04a 100644 --- a/sys/sys/mount.h +++ b/sys/sys/mount.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mount.h,v 1.13 1997/03/02 09:38:22 millert Exp $ */ +/* $OpenBSD: mount.h,v 1.14 1997/03/02 09:52:50 millert Exp $ */ /* $NetBSD: mount.h,v 1.48 1996/02/18 11:55:47 fvdl Exp $ */ /* @@ -133,23 +133,23 @@ 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 0x00000080 /* don't update atime on files */ +#define MNT_NOATIME 0x00008000 /* don't update atime on files */ /* * exported mount flags. */ -#define MNT_EXRDONLY 0x00000100 /* exported read only */ -#define MNT_EXPORTED 0x00000200 /* file system is exported */ -#define MNT_DEFEXPORTED 0x00000400 /* exported to the world */ -#define MNT_EXPORTANON 0x00000800 /* use anon uid mapping for everyone */ -#define MNT_EXKERB 0x00001000 /* exported with Kerberos uid mapping */ +#define MNT_EXRDONLY 0x00000080 /* exported read only */ +#define MNT_EXPORTED 0x00000100 /* file system is exported */ +#define MNT_DEFEXPORTED 0x00000200 /* exported to the world */ +#define MNT_EXPORTANON 0x00000400 /* use anon uid mapping for everyone */ +#define MNT_EXKERB 0x00000800 /* exported with Kerberos uid mapping */ /* * Flags set by internal operations. */ -#define MNT_LOCAL 0x00002000 /* filesystem is stored locally */ -#define MNT_QUOTA 0x00004000 /* quotas are enabled on filesystem */ -#define MNT_ROOTFS 0x00008000 /* identifies the root filesystem */ +#define MNT_LOCAL 0x00001000 /* filesystem is stored locally */ +#define MNT_QUOTA 0x00002000 /* quotas are enabled on filesystem */ +#define MNT_ROOTFS 0x00004000 /* identifies the root filesystem */ /* * Mask of flags that are visible to statfs() |