mirror of https://github.com/torvalds/linux.git
fs/fs_context: Use KERN_INFO for infof()|info_plog()|infofc()
Use KERN_INFO instead of default KERN_NOTICE for infof()|info_plog()|infofc() to printk informational messages. Signed-off-by: Zijun Hu <quic_zijuhu@quicinc.com> Link: https://lore.kernel.org/20250410-rfc_fix_fs-v1-1-406e13b3608e@quicinc.com Signed-off-by: Christian Brauner <brauner@kernel.org>
This commit is contained in:
parent
5730609ffd
commit
916148d24d
|
|
@ -449,6 +449,10 @@ void logfc(struct fc_log *log, const char *prefix, char level, const char *fmt,
|
|||
printk(KERN_ERR "%s%s%pV\n", prefix ? prefix : "",
|
||||
prefix ? ": " : "", &vaf);
|
||||
break;
|
||||
case 'i':
|
||||
printk(KERN_INFO "%s%s%pV\n", prefix ? prefix : "",
|
||||
prefix ? ": " : "", &vaf);
|
||||
break;
|
||||
default:
|
||||
printk(KERN_NOTICE "%s%s%pV\n", prefix ? prefix : "",
|
||||
prefix ? ": " : "", &vaf);
|
||||
|
|
|
|||
Loading…
Reference in New Issue