diff options
author | Chao Yu <chao@kernel.org> | 2024-04-16 09:21:07 +0200 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2024-04-19 19:57:22 +0200 |
commit | 5bf624c0122960ebeeb544e2bc1a2e531ac11392 (patch) | |
tree | 59214af431bf9e582d6a9c463f3996d1efaaaf7b /fs/f2fs/super.c | |
parent | f2fs: convert f2fs__page tracepoint class to use folio (diff) | |
download | linux-5bf624c0122960ebeeb544e2bc1a2e531ac11392.tar.xz linux-5bf624c0122960ebeeb544e2bc1a2e531ac11392.zip |
f2fs: fix comment in sanity_check_raw_super()
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>
Diffstat (limited to 'fs/f2fs/super.c')
-rw-r--r-- | fs/f2fs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index df32573d1f62..5f4262f06302 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), |