hpfs: drop lock/unlock super
Removed lock/unlock super. Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com> Acked-by: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
e40b34c792
commit
f6e12dc4fc
|
@ -398,7 +398,6 @@ static int hpfs_remount_fs(struct super_block *s, int *flags, char *data)
|
||||||
*flags |= MS_NOATIME;
|
*flags |= MS_NOATIME;
|
||||||
|
|
||||||
hpfs_lock(s);
|
hpfs_lock(s);
|
||||||
lock_super(s);
|
|
||||||
uid = sbi->sb_uid; gid = sbi->sb_gid;
|
uid = sbi->sb_uid; gid = sbi->sb_gid;
|
||||||
umask = 0777 & ~sbi->sb_mode;
|
umask = 0777 & ~sbi->sb_mode;
|
||||||
lowercase = sbi->sb_lowercase;
|
lowercase = sbi->sb_lowercase;
|
||||||
|
@ -431,12 +430,10 @@ static int hpfs_remount_fs(struct super_block *s, int *flags, char *data)
|
||||||
|
|
||||||
replace_mount_options(s, new_opts);
|
replace_mount_options(s, new_opts);
|
||||||
|
|
||||||
unlock_super(s);
|
|
||||||
hpfs_unlock(s);
|
hpfs_unlock(s);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
out_err:
|
out_err:
|
||||||
unlock_super(s);
|
|
||||||
hpfs_unlock(s);
|
hpfs_unlock(s);
|
||||||
kfree(new_opts);
|
kfree(new_opts);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
Loading…
Reference in New Issue