Commit 4dbb29fe authored by Linus Torvalds's avatar Linus Torvalds

Merge branch 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs

Pull vfs fixes from Al Viro:
 "A couple of trivial patches that fell through the cracks last cycle"

* 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
  fs: fix indentation in deactivate_super()
  vfs: Remove duplicated d_mountpoint check in __is_local_mountpoint
parents 1c383726 cc23402c
...@@ -684,9 +684,6 @@ bool __is_local_mountpoint(struct dentry *dentry) ...@@ -684,9 +684,6 @@ bool __is_local_mountpoint(struct dentry *dentry)
struct mount *mnt; struct mount *mnt;
bool is_covered = false; bool is_covered = false;
if (!d_mountpoint(dentry))
goto out;
down_read(&namespace_sem); down_read(&namespace_sem);
lock_ns_list(ns); lock_ns_list(ns);
list_for_each_entry(mnt, &ns->list, mnt_list) { list_for_each_entry(mnt, &ns->list, mnt_list) {
...@@ -698,7 +695,7 @@ bool __is_local_mountpoint(struct dentry *dentry) ...@@ -698,7 +695,7 @@ bool __is_local_mountpoint(struct dentry *dentry)
} }
unlock_ns_list(ns); unlock_ns_list(ns);
up_read(&namespace_sem); up_read(&namespace_sem);
out:
return is_covered; return is_covered;
} }
......
...@@ -361,7 +361,7 @@ EXPORT_SYMBOL(deactivate_locked_super); ...@@ -361,7 +361,7 @@ EXPORT_SYMBOL(deactivate_locked_super);
*/ */
void deactivate_super(struct super_block *s) void deactivate_super(struct super_block *s)
{ {
if (!atomic_add_unless(&s->s_active, -1, 1)) { if (!atomic_add_unless(&s->s_active, -1, 1)) {
down_write(&s->s_umount); down_write(&s->s_umount);
deactivate_locked_super(s); deactivate_locked_super(s);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment