Re: [f2fs-dev] [PATCH] f2fs: Fix not used variable 'index'

2024-11-07 Thread patchwork-bot+f2fs--- via Linux-f2fs-devel
Hello: This patch was applied to jaegeuk/f2fs.git (dev) by Jaegeuk Kim : On Wed, 23 Oct 2024 17:48:50 +0800 you wrote: > Fix the following compilation warning: > fs/f2fs/data.c:2391:10: warning: variable ‘index’ set but not used > [-Wunused-but-set-variable] > 2391 | pgoff_t index; > > Only de

Re: [f2fs-dev] [PATCH] f2fs: Fix not used variable 'index'

2024-10-24 Thread Chao Yu via Linux-f2fs-devel
On 2024/10/23 17:48, Zeng Heng wrote: Fix the following compilation warning: fs/f2fs/data.c:2391:10: warning: variable ‘index’ set but not used [-Wunused-but-set-variable] 2391 | pgoff_t index; Only define and set the variable index when the CONFIG_F2FS_FS_COMPRESSION is enabled. Fixes: db92

[f2fs-dev] [PATCH] f2fs: Fix not used variable 'index'

2024-10-23 Thread Zeng Heng via Linux-f2fs-devel
Fix the following compilation warning: fs/f2fs/data.c:2391:10: warning: variable ‘index’ set but not used [-Wunused-but-set-variable] 2391 | pgoff_t index; Only define and set the variable index when the CONFIG_F2FS_FS_COMPRESSION is enabled. Fixes: db92e6c729d8 ("f2fs: convert f2fs_mpage_readp