Message ID | 20240416072108.5819-1-chao@kernel.org (mailing list archive) |
---|---|
State | Accepted |
Commit | 5bf624c0122960ebeeb544e2bc1a2e531ac11392 |
Headers | show |
Series | [f2fs-dev,1/2] f2fs: fix comment in sanity_check_raw_super() | expand |
Hello: This series was applied to jaegeuk/f2fs.git (dev) by Jaegeuk Kim <jaegeuk@kernel.org>: On Tue, 16 Apr 2024 15:21:07 +0800 you wrote: > Commit d7e9a9037de2 ("f2fs: Support Block Size == Page Size") missed to > adjust comment in sanity_check_raw_super(), fix it. > > Signed-off-by: Chao Yu <chao@kernel.org> > --- > fs/f2fs/super.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Here is the summary with links: - [f2fs-dev,1/2] f2fs: fix comment in sanity_check_raw_super() https://git.kernel.org/jaegeuk/f2fs/c/5bf624c01229 - [f2fs-dev,2/2] f2fs: remove unnecessary block size check in init_f2fs_fs() https://git.kernel.org/jaegeuk/f2fs/c/06b206d9e2b4 You are awesome, thank you!
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index 0a34c8746782..6d1e4fc629e2 100644 --- a/fs/f2fs/super.c +++ b/fs/f2fs/super.c @@ -3456,7 +3456,7 @@ static int sanity_check_raw_super(struct f2fs_sb_info *sbi, } } - /* Currently, support only 4KB block size */ + /* only support block_size equals to PAGE_SIZE */ if (le32_to_cpu(raw_super->log_blocksize) != F2FS_BLKSIZE_BITS) { f2fs_info(sbi, "Invalid log_blocksize (%u), supports only %u", le32_to_cpu(raw_super->log_blocksize),
Commit d7e9a9037de2 ("f2fs: Support Block Size == Page Size") missed to adjust comment in sanity_check_raw_super(), fix it. Signed-off-by: Chao Yu <chao@kernel.org> --- fs/f2fs/super.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)