Commonly 'unrecognized mount option' message should be printed at least in KERN_ERR message level rather than KERN_INFO level since it is important for the operating system that some filesytems cannot be mounted normally, therefore the level of 'invalid options' message should be bumped up.
Signed-off-by: Gao Xiang <[email protected]> --- fs/erofs/super.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/erofs/super.c b/fs/erofs/super.c index de8ee81..ab0e4cd 100644 --- a/fs/erofs/super.c +++ b/fs/erofs/super.c @@ -232,7 +232,7 @@ static int parse_options(struct super_block *sb, char *options) #endif break; default: - infoln("Unrecognized mount option \"%s\" " + errln("Unrecognized mount option \"%s\" " "or missing value", p); return -EINVAL; } -- 1.9.1
