The patch titled vfs: keep list of mounts for each superblock has been removed from the -mm tree. Its filename was vfs-keep-list-of-mounts-for-each-superblock.patch This patch was dropped because other changes were merged, which wrecked this patch The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: vfs: keep list of mounts for each superblock From: Miklos Szeredi <mszeredi@xxxxxxx> Keep track of vfsmounts belonging to a superblock. List is protected by vfsmount_lock. Signed-off-by: Miklos Szeredi <mszeredi@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/namespace.c | 5 +++++ fs/super.c | 7 +++++++ include/linux/fs.h | 1 + include/linux/mount.h | 1 + 4 files changed, 14 insertions(+) diff -puN fs/namespace.c~vfs-keep-list-of-mounts-for-each-superblock fs/namespace.c --- a/fs/namespace.c~vfs-keep-list-of-mounts-for-each-superblock +++ a/fs/namespace.c @@ -723,6 +723,10 @@ static struct vfsmount *clone_mnt(struct if (!list_empty(&old->mnt_expire)) list_add(&mnt->mnt_expire, &old->mnt_expire); } + + br_write_lock(vfsmount_lock); + list_add_tail(&mnt->mnt_instance, &mnt->mnt_sb->s_mounts); + br_write_unlock(vfsmount_lock); } return mnt; @@ -783,6 +787,7 @@ put_again: acct_auto_close_mnt(mnt); goto put_again; } + list_del(&mnt->mnt_instance); br_write_unlock(vfsmount_lock); mntfree(mnt); } diff -puN fs/super.c~vfs-keep-list-of-mounts-for-each-superblock fs/super.c --- a/fs/super.c~vfs-keep-list-of-mounts-for-each-superblock +++ a/fs/super.c @@ -76,6 +76,7 @@ static struct super_block *alloc_super(s INIT_HLIST_BL_HEAD(&s->s_anon); INIT_LIST_HEAD(&s->s_inodes); INIT_LIST_HEAD(&s->s_dentry_lru); + INIT_LIST_HEAD(&s->s_mounts); init_rwsem(&s->s_umount); mutex_init(&s->s_lock); lockdep_set_class(&s->s_umount, &type->s_umount_key); @@ -130,6 +131,7 @@ static inline void destroy_super(struct free_percpu(s->s_files); #endif security_sb_free(s); + WARN_ON(!list_empty(&s->s_mounts)); kfree(s->s_subtype); kfree(s->s_options); kfree(s); @@ -1027,6 +1029,11 @@ vfs_kern_mount(struct file_system_type * mnt->mnt_parent = mnt; up_write(&mnt->mnt_sb->s_umount); free_secdata(secdata); + + br_write_lock(vfsmount_lock); + list_add_tail(&mnt->mnt_instance, &mnt->mnt_sb->s_mounts); + br_write_unlock(vfsmount_lock); + return mnt; out_sb: dput(mnt->mnt_root); diff -puN include/linux/fs.h~vfs-keep-list-of-mounts-for-each-superblock include/linux/fs.h --- a/include/linux/fs.h~vfs-keep-list-of-mounts-for-each-superblock +++ a/include/linux/fs.h @@ -1386,6 +1386,7 @@ struct super_block { #else struct list_head s_files; #endif + struct list_head s_mounts; /* list of mounts */ /* s_dentry_lru, s_nr_dentry_unused protected by dcache.c lru locks */ struct list_head s_dentry_lru; /* unused dentry lru */ int s_nr_dentry_unused; /* # of dentry on lru */ diff -puN include/linux/mount.h~vfs-keep-list-of-mounts-for-each-superblock include/linux/mount.h --- a/include/linux/mount.h~vfs-keep-list-of-mounts-for-each-superblock +++ a/include/linux/mount.h @@ -67,6 +67,7 @@ struct vfsmount { #endif struct list_head mnt_mounts; /* list of children, anchored here */ struct list_head mnt_child; /* and going through their mnt_child */ + struct list_head mnt_instance; /* mount instance on sb->s_mounts */ int mnt_flags; /* 4 bytes hole on 64bits arches without fsnotify */ #ifdef CONFIG_FSNOTIFY _ Patches currently in -mm which might be from mszeredi@xxxxxxx are origin.patch linux-next.patch mm-add-replace_page_cache_page-function.patch mm-add-replace_page_cache_page-function-add-freepage-hook.patch vfs-protect-remounting-superblock-read-only.patch vfs-fs_may_remount_ro-turn-unnecessary-check-into-a-warn_on.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html