diff options
author | Chao Yu <yuchao0@huawei.com> | 2017-02-27 18:43:12 +0800 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2017-02-27 10:40:09 -0800 |
commit | b6895e8f99cd8e98056346c42732236b958aab83 (patch) | |
tree | 4ad23f2362d01dd8f9d25500a827818e78081507 /fs | |
parent | 540faedb0036aca14ff90a7f679b008442bc9dd7 (diff) | |
download | linux-b6895e8f99cd8e98056346c42732236b958aab83.tar.bz2 |
f2fs: fix memory leak of write_io_dummy mempool during umount
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/f2fs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index 751e1068db17..53305880c455 100644 --- a/fs/f2fs/super.c +++ b/fs/f2fs/super.c @@ -818,7 +818,7 @@ static void f2fs_put_super(struct super_block *sb) kfree(sbi->raw_super); destroy_device_list(sbi); - + mempool_destroy(sbi->write_io_dummy); destroy_percpu_info(sbi); kfree(sbi); } |