1 /* SPDX-License-Identifier: GPL-2.0-only */ << 2 /* 1 /* 3 * linux/fs/pnode.h 2 * linux/fs/pnode.h 4 * 3 * 5 * (C) Copyright IBM Corporation 2005. 4 * (C) Copyright IBM Corporation 2005. >> 5 * Released under GPL v2. >> 6 * 6 */ 7 */ 7 #ifndef _LINUX_PNODE_H 8 #ifndef _LINUX_PNODE_H 8 #define _LINUX_PNODE_H 9 #define _LINUX_PNODE_H 9 10 10 #include <linux/list.h> 11 #include <linux/list.h> 11 #include "mount.h" !! 12 #include <linux/mount.h> 12 13 13 #define IS_MNT_SHARED(m) ((m)->mnt.mnt_flags & !! 14 #define IS_MNT_SHARED(mnt) (mnt->mnt_flags & MNT_SHARED) 14 #define IS_MNT_SLAVE(m) ((m)->mnt_master) !! 15 #define IS_MNT_SLAVE(mnt) (mnt->mnt_master) 15 #define IS_MNT_NEW(m) (!(m)->mnt_ns || is_ano !! 16 #define IS_MNT_NEW(mnt) (!mnt->mnt_ns) 16 #define CLEAR_MNT_SHARED(m) ((m)->mnt.mnt_flag !! 17 #define CLEAR_MNT_SHARED(mnt) (mnt->mnt_flags &= ~MNT_SHARED) 17 #define IS_MNT_UNBINDABLE(m) ((m)->mnt.mnt_fla !! 18 #define IS_MNT_UNBINDABLE(mnt) (mnt->mnt_flags & MNT_UNBINDABLE) 18 #define IS_MNT_MARKED(m) ((m)->mnt.mnt_flags & << 19 #define SET_MNT_MARK(m) ((m)->mnt.mnt_flags |= << 20 #define CLEAR_MNT_MARK(m) ((m)->mnt.mnt_flags << 21 #define IS_MNT_LOCKED(m) ((m)->mnt.mnt_flags & << 22 19 23 #define CL_EXPIRE 0x01 20 #define CL_EXPIRE 0x01 24 #define CL_SLAVE 0x02 21 #define CL_SLAVE 0x02 25 #define CL_COPY_UNBINDABLE 0x04 !! 22 #define CL_COPY_ALL 0x04 26 #define CL_MAKE_SHARED 0x08 23 #define CL_MAKE_SHARED 0x08 27 #define CL_PRIVATE 0x10 !! 24 #define CL_PROPAGATION 0x10 28 #define CL_SHARED_TO_SLAVE 0x20 !! 25 #define CL_PRIVATE 0x20 29 #define CL_COPY_MNT_NS_FILE 0x40 << 30 << 31 #define CL_COPY_ALL (CL_COPY_UNBIN << 32 26 33 static inline void set_mnt_shared(struct mount !! 27 static inline void set_mnt_shared(struct vfsmount *mnt) 34 { 28 { 35 mnt->mnt.mnt_flags &= ~MNT_SHARED_MASK !! 29 mnt->mnt_flags &= ~MNT_PNODE_MASK; 36 mnt->mnt.mnt_flags |= MNT_SHARED; !! 30 mnt->mnt_flags |= MNT_SHARED; 37 } 31 } 38 32 39 void change_mnt_propagation(struct mount *, in !! 33 void change_mnt_propagation(struct vfsmount *, int); 40 int propagate_mnt(struct mount *, struct mount !! 34 int propagate_mnt(struct vfsmount *, struct dentry *, struct vfsmount *, 41 struct hlist_head *); !! 35 struct list_head *); 42 int propagate_umount(struct list_head *); 36 int propagate_umount(struct list_head *); 43 int propagate_mount_busy(struct mount *, int); !! 37 int propagate_mount_busy(struct vfsmount *, int); 44 void propagate_mount_unlock(struct mount *); !! 38 void mnt_release_group_id(struct vfsmount *); 45 void mnt_release_group_id(struct mount *); !! 39 int get_dominating_id(struct vfsmount *mnt, const struct path *root); 46 int get_dominating_id(struct mount *mnt, const << 47 int mnt_get_count(struct mount *mnt); << 48 void mnt_set_mountpoint(struct mount *, struct << 49 struct mount *); << 50 void mnt_change_mountpoint(struct mount *paren << 51 struct mount *mnt); << 52 struct mount *copy_tree(struct mount *, struct << 53 bool is_path_reachable(struct mount *, struct << 54 const struct path *ro << 55 int count_mounts(struct mnt_namespace *ns, str << 56 bool propagation_would_overmount(const struct << 57 const struct << 58 const struct << 59 #endif /* _LINUX_PNODE_H */ 40 #endif /* _LINUX_PNODE_H */ 60 41
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.