Remove the stuff for trawling a mount namespace's mount list using inserted cursors as bookmarks as this has been replaced with an xarray-based approach. Signed-off-by: David Howells <dhowells@xxxxxxxxxx> cc: Alexander Viro <viro@xxxxxxxxxxxxxxxxxx> cc: Miklos Szeredi <miklos@xxxxxxxxxx> cc: Matthew Wilcox <willy@xxxxxxxxxxxxx> --- fs/namespace.c | 30 ------------------------------ include/linux/mount.h | 4 +--- 2 files changed, 1 insertion(+), 33 deletions(-) diff --git a/fs/namespace.c b/fs/namespace.c index d19fde0654f7..105a6d882cb4 100644 --- a/fs/namespace.c +++ b/fs/namespace.c @@ -673,11 +673,6 @@ static inline void unlock_ns_list(struct mnt_namespace *ns) spin_unlock(&ns->ns_lock); } -static inline bool mnt_is_cursor(struct mount *mnt) -{ - return mnt->mnt.mnt_flags & MNT_CURSOR; -} - /* * __is_local_mountpoint - Test to see if dentry is a mountpoint in the * current mount namespace. @@ -702,8 +697,6 @@ bool __is_local_mountpoint(struct dentry *dentry) down_read(&namespace_sem); lock_ns_list(ns); list_for_each_entry(mnt, &ns->list, mnt_list) { - if (mnt_is_cursor(mnt)) - continue; is_covered = (mnt->mnt_mountpoint == dentry); if (is_covered) break; @@ -1334,26 +1327,6 @@ struct vfsmount *mnt_clone_internal(const struct path *path) } #ifdef CONFIG_PROC_FS -#if 0 -static struct mount *mnt_list_next(struct mnt_namespace *ns, - struct list_head *p) -{ - struct mount *mnt, *ret = NULL; - - lock_ns_list(ns); - list_for_each_continue(p, &ns->list) { - mnt = list_entry(p, typeof(*mnt), mnt_list); - if (!mnt_is_cursor(mnt)) { - ret = mnt; - break; - } - } - unlock_ns_list(ns); - - return ret; -} -#endif - /* iterator; we want it to have access to namespace_sem, thus here... */ static void *m_start(struct seq_file *m, loff_t *pos) { @@ -4390,9 +4363,6 @@ static bool mnt_already_visible(struct mnt_namespace *ns, struct mount *child; int mnt_flags; - if (mnt_is_cursor(mnt)) - continue; - if (mnt->mnt.mnt_sb->s_type != sb->s_type) continue; diff --git a/include/linux/mount.h b/include/linux/mount.h index 5d92a7e1a742..88027d38833c 100644 --- a/include/linux/mount.h +++ b/include/linux/mount.h @@ -51,8 +51,7 @@ struct fs_context; #define MNT_ATIME_MASK (MNT_NOATIME | MNT_NODIRATIME | MNT_RELATIME ) #define MNT_INTERNAL_FLAGS (MNT_SHARED | MNT_WRITE_HOLD | MNT_INTERNAL | \ - MNT_DOOMED | MNT_SYNC_UMOUNT | MNT_MARKED | \ - MNT_CURSOR) + MNT_DOOMED | MNT_SYNC_UMOUNT | MNT_MARKED) #define MNT_INTERNAL 0x4000 @@ -66,7 +65,6 @@ struct fs_context; #define MNT_SYNC_UMOUNT 0x2000000 #define MNT_MARKED 0x4000000 #define MNT_UMOUNT 0x8000000 -#define MNT_CURSOR 0x10000000 struct vfsmount { struct dentry *mnt_root; /* root of the mounted tree */