diff options
author | Zhang Qilong | 2020-11-20 21:33:34 +0800 |
---|---|---|
committer | Jaegeuk Kim | 2020-12-02 22:00:21 -0800 |
commit | beb78181f13430ed7a1e621d9faa50e076d7906f (patch) | |
tree | 89198814b8674e33d622d5bfd8c6ddf319db407d /fs/f2fs/checkpoint.c | |
parent | 9f7e334aec1671b89df12b98002705cb254de5d9 (diff) |
f2fs: Remove the redundancy initialization
There are two assignments are meaningless, and remove them.
Signed-off-by: Zhang Qilong <zhangqilong3@huawei.com>
Reviewed-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/checkpoint.c')
-rw-r--r-- | fs/f2fs/checkpoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c index 023462e80e58..9b0628e0d8bc 100644 --- a/fs/f2fs/checkpoint.c +++ b/fs/f2fs/checkpoint.c @@ -37,7 +37,7 @@ void f2fs_stop_checkpoint(struct f2fs_sb_info *sbi, bool end_io) struct page *f2fs_grab_meta_page(struct f2fs_sb_info *sbi, pgoff_t index) { struct address_space *mapping = META_MAPPING(sbi); - struct page *page = NULL; + struct page *page; repeat: page = f2fs_grab_cache_page(mapping, index, false); if (!page) { |