From b133aa18b25e5538c030d2ac16bd5a9a2622ff66 Mon Sep 17 00:00:00 2001 From: Pawel Jakub Dawidek Date: Sun, 23 Oct 2005 16:52:13 +0000 Subject: [PATCH] MNT_JAILDEVFS is not used anymore. Mark it as spare. OK'ed by: phk --- sys/sys/mount.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/sys/sys/mount.h b/sys/sys/mount.h index 6cc890986e8..1e1b75c605b 100644 --- a/sys/sys/mount.h +++ b/sys/sys/mount.h @@ -188,7 +188,6 @@ struct vnode *__mnt_vnode_next(struct vnode **nvp, struct mount *mp); #define MNT_SUIDDIR 0x00100000 /* special handling of SUID on dirs */ #define MNT_SOFTDEP 0x00200000 /* soft updates being done */ #define MNT_NOSYMFOLLOW 0x00400000 /* do not follow symlinks */ -#define MNT_JAILDEVFS 0x02000000 /* jail-friendly DEVFS behaviour */ #define MNT_MULTILABEL 0x04000000 /* MAC support for individual objects */ #define MNT_ACLS 0x08000000 /* ACL support enabled */ #define MNT_NOATIME 0x10000000 /* disable update of file access time */ @@ -229,13 +228,13 @@ struct vnode *__mnt_vnode_next(struct vnode **nvp, struct mount *mp); MNT_ROOTFS | MNT_NOATIME | MNT_NOCLUSTERR| \ MNT_NOCLUSTERW | MNT_SUIDDIR | MNT_SOFTDEP | \ MNT_IGNORE | MNT_EXPUBLIC | MNT_NOSYMFOLLOW | \ - MNT_JAILDEVFS | MNT_MULTILABEL | MNT_ACLS) + MNT_MULTILABEL | MNT_ACLS) /* Mask of flags that can be updated. */ #define MNT_UPDATEMASK (MNT_NOSUID | MNT_NOEXEC | \ MNT_SYNCHRONOUS | MNT_UNION | MNT_ASYNC | \ MNT_NOATIME | \ - MNT_NOSYMFOLLOW | MNT_IGNORE | MNT_JAILDEVFS | \ + MNT_NOSYMFOLLOW | MNT_IGNORE | \ MNT_NOCLUSTERR | MNT_NOCLUSTERW | MNT_SUIDDIR | \ MNT_ACLS | MNT_USER) @@ -252,6 +251,10 @@ struct vnode *__mnt_vnode_next(struct vnode **nvp, struct mount *mp); #define MNT_BYFSID 0x08000000 /* specify filesystem by ID. */ #define MNT_CMDFLAGS (MNT_UPDATE | MNT_DELEXPORT | MNT_RELOAD | \ MNT_FORCE | MNT_SNAPSHOT | MNT_BYFSID) +/* + * Still available. + */ +#define MNT_SPARE_0x02000000 0x02000000 /* * Internal filesystem control flags stored in mnt_kern_flag. *