All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] erofs: fix typo in error messages
@ 2026-07-31 16:06 Giuseppe Scrivano
  2026-08-01  3:23 ` Gao Xiang
  0 siblings, 1 reply; 2+ messages in thread
From: Giuseppe Scrivano @ 2026-07-31 16:06 UTC (permalink / raw)
  To: linux-erofs; +Cc: xiang, gscrivan

the option is called "inode_share".

Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
---
 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



^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-08-01  3:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-31 16:06 [PATCH] erofs: fix typo in error messages Giuseppe Scrivano
2026-08-01  3:23 ` Gao Xiang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.