summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorLi Zetao <lizetao1@huawei.com>2023-04-25 02:46:48 +0300
committerJaegeuk Kim <jaegeuk@kernel.org>2023-05-08 21:18:04 +0300
commit1223e432d9e16df39ba51f496c6ad3d7d560f612 (patch)
tree5e6f8e3f1c5ddc041132bd521e565c304d8267f0 /fs
parent7cd2e5f75b86a1befa99834f3ed1d735eeff69e6 (diff)
downloadlinux-1223e432d9e16df39ba51f496c6ad3d7d560f612.tar.xz
f2fs: remove redundant goto statement in f2fs_read_single_page()
After the commit "0a4ee518185", this "goto" statement was redundant, remote it for clean code. Signed-off-by: Li Zetao <lizetao1@huawei.com> Reviewed-by: Chao Yu <chao@kernel.org> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs')
-rw-r--r--fs/f2fs/data.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c
index f26eac327d6e..7dd92a9028b1 100644
--- a/fs/f2fs/data.c
+++ b/fs/f2fs/data.c
@@ -2173,7 +2173,6 @@ submit_and_realloc:
f2fs_update_iostat(F2FS_I_SB(inode), NULL, FS_DATA_READ_IO,
F2FS_BLKSIZE);
*last_block_in_bio = block_nr;
- goto out;
out:
*bio_ret = bio;
return ret;