diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2009-06-16 23:24:50 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2009-06-17 00:36:36 -0400 |
commit | 536c94901eb8f2eb6fccf81ae6be814899a9f6e8 (patch) | |
tree | 42bea70cf686d2f59b186e147a152670de650afc /fs/befs | |
parent | 608ba50bd0225d95469154feba8f00a6457848c1 (diff) |
befs ->pust_super() doesn't need BKL
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/befs')
-rw-r--r-- | fs/befs/linuxvfs.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/fs/befs/linuxvfs.c b/fs/befs/linuxvfs.c index 9367b6297d84..02c06138bc6a 100644 --- a/fs/befs/linuxvfs.c +++ b/fs/befs/linuxvfs.c | |||
@@ -737,8 +737,6 @@ parse_options(char *options, befs_mount_options * opts) | |||
737 | static void | 737 | static void |
738 | befs_put_super(struct super_block *sb) | 738 | befs_put_super(struct super_block *sb) |
739 | { | 739 | { |
740 | lock_kernel(); | ||
741 | |||
742 | kfree(BEFS_SB(sb)->mount_opts.iocharset); | 740 | kfree(BEFS_SB(sb)->mount_opts.iocharset); |
743 | BEFS_SB(sb)->mount_opts.iocharset = NULL; | 741 | BEFS_SB(sb)->mount_opts.iocharset = NULL; |
744 | 742 | ||
@@ -749,8 +747,6 @@ befs_put_super(struct super_block *sb) | |||
749 | 747 | ||
750 | kfree(sb->s_fs_info); | 748 | kfree(sb->s_fs_info); |
751 | sb->s_fs_info = NULL; | 749 | sb->s_fs_info = NULL; |
752 | |||
753 | unlock_kernel(); | ||
754 | } | 750 | } |
755 | 751 | ||
756 | /* Allocate private field of the superblock, fill it. | 752 | /* Allocate private field of the superblock, fill it. |