mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] erofs: add error log in erofs_fc_parse_param
@ 2025-01-17  8:52 Chen Linxuan
  2025-01-17  9:28 ` Gao Xiang
  2025-01-18  0:45 ` Ian Kent
  0 siblings, 2 replies; 10+ messages in thread
From: Chen Linxuan @ 2025-01-17  8:52 UTC (permalink / raw)
  To: Gao Xiang, Chao Yu, Yue Hu, Jeffle Xu, Sandeep Dhavale
  Cc: Chen Linxuan, linux-erofs, linux-kernel

While reading erofs code, I notice that `erofs_fc_parse_param` will
return -ENOPARAM, which means that erofs do not support this option,
without report anything when `fs_parse` return an unknown `opt`.

But if an option is unknown to erofs, I mean that option not in
`erofs_fs_parameters` at all, `fs_parse` will return -ENOPARAM,
which means that `erofs_fs_parameters` should has returned earlier.

Entering `default` means `fs_parse` return something we unexpected.
I am not sure about it but I think we should return -EINVAL here,
just like `xfs_fs_parse_param`.

Signed-off-by: Chen Linxuan <chenlinxuan@uniontech.com>
---
 fs/erofs/super.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/fs/erofs/super.c b/fs/erofs/super.c
index 1fc5623c3a4d..67fc4c1deb98 100644
--- a/fs/erofs/super.c
+++ b/fs/erofs/super.c
@@ -509,7 +509,8 @@ static int erofs_fc_parse_param(struct fs_context *fc,
 #endif
 		break;
 	default:
-		return -ENOPARAM;
+		errorfc(fc, "%s option not supported", param->key);
+		return -EINVAL;
 	}
 	return 0;
 }
-- 
2.43.0


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

end of thread, other threads:[~2025-01-18  8:45 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-01-17  8:52 [PATCH] erofs: add error log in erofs_fc_parse_param Chen Linxuan
2025-01-17  9:28 ` Gao Xiang
2025-01-17  9:50   ` Chen Linxuan
2025-01-17  9:54     ` Gao Xiang
2025-01-17 10:00       ` Chen Linxuan
2025-01-17 10:08         ` Gao Xiang
2025-01-17 10:01       ` Chen Linxuan
2025-01-18  0:45 ` Ian Kent
2025-01-18  1:25   ` Ian Kent
2025-01-18  8:45     ` Gao Xiang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®