diff options
Diffstat (limited to 'fs/nilfs2/super.c')
-rw-r--r-- | fs/nilfs2/super.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/nilfs2/super.c b/fs/nilfs2/super.c index 7901d8cbb9b1..7262e8427c20 100644 --- a/fs/nilfs2/super.c +++ b/fs/nilfs2/super.c | |||
@@ -316,6 +316,8 @@ static void nilfs_put_super(struct super_block *sb) | |||
316 | struct nilfs_sb_info *sbi = NILFS_SB(sb); | 316 | struct nilfs_sb_info *sbi = NILFS_SB(sb); |
317 | struct the_nilfs *nilfs = sbi->s_nilfs; | 317 | struct the_nilfs *nilfs = sbi->s_nilfs; |
318 | 318 | ||
319 | lock_kernel(); | ||
320 | |||
319 | if (sb->s_dirt) | 321 | if (sb->s_dirt) |
320 | nilfs_write_super(sb); | 322 | nilfs_write_super(sb); |
321 | 323 | ||
@@ -333,6 +335,8 @@ static void nilfs_put_super(struct super_block *sb) | |||
333 | sbi->s_super = NULL; | 335 | sbi->s_super = NULL; |
334 | sb->s_fs_info = NULL; | 336 | sb->s_fs_info = NULL; |
335 | kfree(sbi); | 337 | kfree(sbi); |
338 | |||
339 | unlock_kernel(); | ||
336 | } | 340 | } |
337 | 341 | ||
338 | /** | 342 | /** |