[PATCH] f2fs: fix typo

From: Yangtao Li
Date: Fri Mar 10 2023 - 12:21:10 EST


s/not compatible/is not compatible

Signed-off-by: Yangtao Li <frank.li@xxxxxxxx>
---
fs/f2fs/super.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c
index 9c87d91df61b..4c22f1b1da09 100644
--- a/fs/f2fs/super.c
+++ b/fs/f2fs/super.c
@@ -1350,7 +1350,7 @@ static int parse_options(struct super_block *sb, char *options, bool is_remount)
}

if (f2fs_is_readonly(sbi) && test_opt(sbi, FLUSH_MERGE)) {
- f2fs_err(sbi, "FLUSH_MERGE not compatible with readonly mode");
+ f2fs_err(sbi, "FLUSH_MERGE is not compatible with readonly mode");
return -EINVAL;
}

@@ -2342,7 +2342,7 @@ static int f2fs_remount(struct super_block *sb, int *flags, char *data)

if ((*flags & SB_RDONLY) && test_opt(sbi, DISABLE_CHECKPOINT)) {
err = -EINVAL;
- f2fs_warn(sbi, "disabling checkpoint not compatible with read-only");
+ f2fs_warn(sbi, "disabling checkpoint is not compatible with read-only");
goto restore_opts;
}

--
2.35.1