diff mbox series

[f2fs-dev] f2fs: fix typo

Message ID 20230419032627.15421-1-frank.li@vivo.com (mailing list archive)
State New
Headers show
Series [f2fs-dev] f2fs: fix typo | expand

Commit Message

李扬韬 April 19, 2023, 3:26 a.m. UTC
Add missing 'is'.

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

Patch

diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c
index 9f15b03037db..357d45e49635 100644
--- a/fs/f2fs/super.c
+++ b/fs/f2fs/super.c
@@ -1362,7 +1362,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;
 	}
 
@@ -2356,7 +2356,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;
 	}