diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2010-03-21 22:34:11 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2010-05-21 18:31:14 -0400 |
commit | 389b8be6ef419397e4f176652927ebad6ebb4b77 (patch) | |
tree | 941037c2296b94b30f4a883235f54930b6aa485e /fs/super.c | |
parent | 79d7e39ee1d4b423206f6cfd2cd2eed6253d95fe (diff) | |
download | op-kernel-dev-389b8be6ef419397e4f176652927ebad6ebb4b77.zip op-kernel-dev-389b8be6ef419397e4f176652927ebad6ebb4b77.tar.gz |
get rid of open-coded grab_super() in get_active_super()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/super.c')
-rw-r--r-- | fs/super.c | 19 |
1 files changed, 3 insertions, 16 deletions
@@ -487,22 +487,9 @@ struct super_block *get_active_super(struct block_device *bdev) if (sb->s_bdev != bdev) continue; - sb->s_count++; - spin_unlock(&sb_lock); - down_write(&sb->s_umount); - if (sb->s_root) { - spin_lock(&sb_lock); - if (sb->s_count > S_BIAS) { - atomic_inc(&sb->s_active); - sb->s_count--; - spin_unlock(&sb_lock); - return sb; - } - spin_unlock(&sb_lock); - } - up_write(&sb->s_umount); - put_super(sb); - yield(); + if (grab_super(sb)) /* drops sb_lock */ + return sb; + spin_lock(&sb_lock); } spin_unlock(&sb_lock); |