printk ("释放 initrd 内存: %ldk freed\n", (end - start) >> 10); 的日志级别是多少
在内核函数调用中
printk ("Freeing initrd memory: %ldk freed\n", (end - start) >> 10);
没有提及内核日志级别。那么默认的日志级别是多少呢?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我得到了答案。
如果 printk 函数中没有提及消息日志级别,则内核将使用 DEFAULT_MESSAGE_LOGLEVEL。 /proc/sys/kernel/printk 中的第二个字段显示 DEFAULT_MESSAGE_LOGLEVEL。
I got the answer.
If no message log level is mentioned in printk function, the DEFAULT_MESSAGE_LOGLEVEL is used by the kernel. The second field in /proc/sys/kernel/printk shows the DEFAULT_MESSAGE_LOGLEVEL.