diff --git a/[refs] b/[refs] index 871942e1c2e1..076eb20b493c 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: e40b34c7921534a46f7bae23ec6646d3d9c2c7b2 +refs/heads/master: f6e12dc4fc6f78745fd48a24ff2f06efb0bdeb0d diff --git a/trunk/fs/hpfs/super.c b/trunk/fs/hpfs/super.c index bc28bf077a6a..a3076228523d 100644 --- a/trunk/fs/hpfs/super.c +++ b/trunk/fs/hpfs/super.c @@ -398,7 +398,6 @@ static int hpfs_remount_fs(struct super_block *s, int *flags, char *data) *flags |= MS_NOATIME; hpfs_lock(s); - lock_super(s); uid = sbi->sb_uid; gid = sbi->sb_gid; umask = 0777 & ~sbi->sb_mode; 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); - unlock_super(s); hpfs_unlock(s); return 0; out_err: - unlock_super(s); hpfs_unlock(s); kfree(new_opts); return -EINVAL;