From: Li Zetao Date: Mon, 24 Apr 2023 23:46:48 +0000 (+0000) Subject: f2fs: remove redundant goto statement in f2fs_read_single_page() X-Git-Tag: v6.6.17~4435^2~42 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1223e432d9e16df39ba51f496c6ad3d7d560f612;p=platform%2Fkernel%2Flinux-rpi.git 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 Reviewed-by: Chao Yu Signed-off-by: Jaegeuk Kim --- diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c index f26eac3..7dd92a9 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;