From 1223e432d9e16df39ba51f496c6ad3d7d560f612 Mon Sep 17 00:00:00 2001 From: Li Zetao Date: Mon, 24 Apr 2023 23:46:48 +0000 Subject: [PATCH] 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 --- fs/f2fs/data.c | 1 - 1 file changed, 1 deletion(-) diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c index f26eac327d6e7..7dd92a9028b1b 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; -- 2.30.2