diff options
author | Chao Yu <yuchao0@huawei.com> | 2020-06-22 17:38:48 +0800 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2020-07-07 21:51:48 -0700 |
commit | 901d745f8e6a61a835b12314d8b8a41df7012596 (patch) | |
tree | 8a01d103f3614f4d3f31e152a90b8a793d1a708a /fs/f2fs/recovery.c | |
parent | 9039d8355d6e37647b31a42122a26f1858a2470a (diff) | |
download | linux-901d745f8e6a61a835b12314d8b8a41df7012596.tar.gz linux-901d745f8e6a61a835b12314d8b8a41df7012596.tar.bz2 linux-901d745f8e6a61a835b12314d8b8a41df7012596.zip |
f2fs: split f2fs_allocate_new_segments()
to two independent functions:
- f2fs_allocate_new_segment() for specified type segment allocation
- f2fs_allocate_new_segments() for all data type segments allocation
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/recovery.c')
-rw-r--r-- | fs/f2fs/recovery.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/recovery.c b/fs/f2fs/recovery.c index ae5310f02e7f..af974ba273b3 100644 --- a/fs/f2fs/recovery.c +++ b/fs/f2fs/recovery.c @@ -742,7 +742,7 @@ next: f2fs_put_page(page, 1); } if (!err) - f2fs_allocate_new_segments(sbi, NO_CHECK_TYPE); + f2fs_allocate_new_segments(sbi); return err; } |