From: Al Viro Date: Wed, 17 Jun 2009 03:24:50 +0000 (-0400) Subject: befs ->pust_super() doesn't need BKL X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=536c94901eb8f2eb6fccf81ae6be814899a9f6e8;p=GitHub%2FLineageOS%2Fandroid_kernel_samsung_universal7580.git befs ->pust_super() doesn't need BKL Signed-off-by: Al Viro --- diff --git a/fs/befs/linuxvfs.c b/fs/befs/linuxvfs.c index 9367b6297d8..02c06138bc6 100644 --- a/fs/befs/linuxvfs.c +++ b/fs/befs/linuxvfs.c @@ -737,8 +737,6 @@ parse_options(char *options, befs_mount_options * opts) static void befs_put_super(struct super_block *sb) { - lock_kernel(); - kfree(BEFS_SB(sb)->mount_opts.iocharset); BEFS_SB(sb)->mount_opts.iocharset = NULL; @@ -749,8 +747,6 @@ befs_put_super(struct super_block *sb) kfree(sb->s_fs_info); sb->s_fs_info = NULL; - - unlock_kernel(); } /* Allocate private field of the superblock, fill it.