Add missing 'is'. Signed-off-by: Yangtao Li <frank...@vivo.com> --- 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 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; } -- 2.39.0 _______________________________________________ Linux-f2fs-devel mailing list Linux-f2fs-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel