Re: [f2fs-dev] [PATCH v2] f2fs: convert to MAX_SBI_FLAG instead of 32 in stat_show()

2023-03-23 Thread Chao Yu
On 2023/3/8 22:06, Yangtao Li wrote: BIW reduce the s_flag array size and make s_flag constant. Signed-off-by: Yangtao Li Reviewed-by: Chao Yu Thanks, ___ Linux-f2fs-devel mailing list Linux-f2fs-devel@lists.sourceforge.net https://lists.sourcef

Re: [f2fs-dev] [PATCH v2] f2fs: convert to MAX_SBI_FLAG instead of 32 in stat_show()

2023-03-21 Thread patchwork-bot+f2fs
Hello: This patch was applied to jaegeuk/f2fs.git (dev) by Jaegeuk Kim : On Wed, 8 Mar 2023 22:06:23 +0800 you wrote: > BIW reduce the s_flag array size and make s_flag constant. > > Signed-off-by: Yangtao Li > --- > v2: > -make s_flag constant > fs/f2fs/debug.c | 36 ++---

[f2fs-dev] [PATCH v2] f2fs: convert to MAX_SBI_FLAG instead of 32 in stat_show()

2023-03-08 Thread Yangtao Li via Linux-f2fs-devel
BIW reduce the s_flag array size and make s_flag constant. Signed-off-by: Yangtao Li --- v2: -make s_flag constant fs/f2fs/debug.c | 36 ++-- fs/f2fs/f2fs.h | 6 +- 2 files changed, 23 insertions(+), 19 deletions(-) diff --git a/fs/f2fs/debug.c b/fs/f2fs/de