From: millert Date: Sun, 2 Mar 1997 09:52:50 +0000 (+0000) Subject: Change MNT_NOATIME to unused value. This backs out the MNT_* renumbering X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=e017d37468b2a4892e76eda65fb842958db470ea;p=openbsd 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. --- 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()