the option is called "inode_share".
Signed-off-by: Giuseppe Scrivano <[email protected]>
---
fs/erofs/super.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fs/erofs/super.c b/fs/erofs/super.c
index 23fee43de1d1..f1f728a2ed57 100644
--- a/fs/erofs/super.c
+++ b/fs/erofs/super.c
@@ -664,7 +664,7 @@ static int erofs_fc_fill_super(struct super_block *sb,
struct fs_context *fc)
sb->s_op = &erofs_sops;
if (!sbi->domain_id && test_opt(&sbi->opt, INODE_SHARE)) {
- errorfc(fc, "domain_id is needed when inode_ishare is on");
+ errorfc(fc, "domain_id is needed when inode_share is on");
return -EINVAL;
}
if (!sbi->domain_id && test_opt(&sbi->opt, SUPERBLOCK_SHARE)) {
@@ -672,7 +672,7 @@ static int erofs_fc_fill_super(struct super_block *sb,
struct fs_context *fc)
return -EINVAL;
}
if (test_opt(&sbi->opt, DAX_ALWAYS) && test_opt(&sbi->opt,
INODE_SHARE)) {
- errorfc(fc, "FSDAX is not allowed when inode_ishare is on");
+ errorfc(fc, "FSDAX is not allowed when inode_share is on");
return -EINVAL;
}
--
2.55.0