f2fs: fix comment in sanity_check_raw_super()
authorChao Yu <chao@kernel.org>
Tue, 16 Apr 2024 07:21:07 +0000 (15:21 +0800)
committerJaegeuk Kim <jaegeuk@kernel.org>
Fri, 19 Apr 2024 17:57:22 +0000 (17:57 +0000)
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>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/super.c

index df32573d1f620949880a942768729211f4f14b19..5f4262f0630246ded8ed1d3f2c0e244736f1f059 100644 (file)
@@ -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),