diff options
Diffstat (limited to 'fs/ext2/super.c')
-rw-r--r-- | fs/ext2/super.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/ext2/super.c b/fs/ext2/super.c index 932a2bcb6908..a44963d8edbd 100644 --- a/fs/ext2/super.c +++ b/fs/ext2/super.c | |||
@@ -114,6 +114,8 @@ static void ext2_put_super (struct super_block * sb) | |||
114 | int i; | 114 | int i; |
115 | struct ext2_sb_info *sbi = EXT2_SB(sb); | 115 | struct ext2_sb_info *sbi = EXT2_SB(sb); |
116 | 116 | ||
117 | lock_kernel(); | ||
118 | |||
117 | if (sb->s_dirt) | 119 | if (sb->s_dirt) |
118 | ext2_write_super(sb); | 120 | ext2_write_super(sb); |
119 | 121 | ||
@@ -138,7 +140,7 @@ static void ext2_put_super (struct super_block * sb) | |||
138 | kfree(sbi->s_blockgroup_lock); | 140 | kfree(sbi->s_blockgroup_lock); |
139 | kfree(sbi); | 141 | kfree(sbi); |
140 | 142 | ||
141 | return; | 143 | unlock_kernel(); |
142 | } | 144 | } |
143 | 145 | ||
144 | static struct kmem_cache * ext2_inode_cachep; | 146 | static struct kmem_cache * ext2_inode_cachep; |