Linux内核打印函数printk的使用说明 .

printk函数

        We used the printk function in earlier chapters with the simplifying assumption that it works like printf. Now it's time to introduce some of the differences. 

         我们在前面章节中简单地把 printk 当作 printf 函数来使用。现在是时候来介绍它的一些不同之处了。 

        One of the differences is that printk lets you classify messages according to their severity by associating different loglevels, or priorities, with the messages. You usually indicate the loglevel with a macro. For example, KERN_INFO, which we saw prepended to some of the earlier print statements, is one of the possible loglevels of the message. The loglevel macro expands to a string, which is concatenated to the message text at compile time; that's why there is no comma between the priority and the format string in the following examples. Here are two examples of printk commands, a debug message and a critical message: 

        其中一个不同点是,printk 允许你按照相关的记录级或优先级将消息严格分类。通常你需要一个宏来指定 记录等级。例如,KERN_INFO,我们在早先的的例子中看到过这个宏,它就是消息 记录等级的一种。 记录等级宏的作用是扩展为一个字符串,这个字符串会在编译期间与相应的消息文本相连接;这就解释了下面例子中为什么在优先级和格式化字符串之间没有逗号了。下面是两个printk函数的例子,一个是调试 消息,一个是临界 消息: 

printk(KERN_DEBUG "Here I am: %s:%i/n", _ _FILE_ _, _ _LINE_ _); 

 



printk(KERN_CRIT "I'm trashed; giving up on %p/n", ptr); 

 



        There are eight possible loglevel strings, defined in the header   ; we list them in order of decreasing severity: 
        
         在头文件 <linux/kernel.h> 中共定义了八个可用的记录级;我们下面按其严重性倒序列出: 

KERN_EMERG

Used for emergency messages, usually those that precede a crash. 

用于 突发性事件的消息,通常在系统崩溃之前报告此类消息。 

KERN_ALERT

A situation requiring immediate action. 

在需要立即操作的情况下使用此消息。 

KERN_CRIT

Critical conditions, often related to serious hardware or software failures. 

用于临界条件下,通常遇到严重的硬软件错误时使用此消息。 

KERN_ERR

Used to report error conditions; device drivers often use KERN_ERR to report hardware difficulties. 

用于报告错误条件;设备驱动经常使用KERN_ERR报告硬件难题。 

KERN_WARNING

Warnings about problematic situations that do not, in themselves, create serious problems with the system. 

是关于问题状况的警告,一般这些状况不会引起系统的严重问题。 

KERN_NOTICE 

Situations that are normal, but still worthy of note. A number of security-related conditions are reported at this level. 

该级别较为普通,但仍然值得注意。许多与安全性相关的情况会在这个级别被报告。 

KERN_INFO

Informational messages. Many drivers print information about the hardware they find at startup time at this level. 

信息消息。许多驱动程序在启动时刻用它来输出获得的硬件信息。 

KERN_DEBUG 

Used for debugging messages. 

用于输出调试信息 

        Each string (in the macro expansion) represents an integer in angle brackets. Integers range from 0 to 7, with smaller values representing higher priorities. 

        每一个字符串( 由宏扩展而成)表示了尖括号内的一个整数。 数值范围从0到7, 数值越小,优先级越高。 

        A printk statement with no specified priority defaults to DEFAULT_MESSAGE_LOGLEVEL, specified in kernel/printk.c as an integer. In the 2.6.10 kernel, DEFAULT_MESSAGE_LOGLEVEL is KERN_WARNING, but that has been known to change in the past. 

        一个printk的缺省优先级是DEFAULT_MESSAGE_LOGLEVEL,它是一个在kernel/printk.c文件中指定的整数。在2.6.10内核中,DEFAULT_MESSAGE_LOGLEVEL相当于KERN_WARNING,但 据说在 早期版本中这是两个不同的优先级。 

        Based on the loglevel, the kernel may print the message to the current console, be it a text-mode terminal, a serial port, or a parallel printer. If the priority is less than the integer variable console_loglevel, the message is delivered to the console one line at a time (nothing is sent unless a trailing newline is provided). If both klogd and syslogd are running on the system, kernel messages are appended to /var/log/messages (or otherwise treated depending on your syslogd configuration), independent of console_loglevel. If klogd is not running, the message won't reach user space unless you read /proc/kmsg (which is often most easily done with the dmesg command). When using klogd, you should remember that it doesn't save consecutive identical lines; it only saves the first such line and, at a later time, the number of repetitions it received. 

        基于这些 记录级,内核可以把消息输出到当前的控制台,也可以是一个文本模式的终端,一个串口,或是一个并口打印机。如果优先级小于整形变量 console_loglevel, 那么一次将会只发送一行消息到控制台中( 除非遇到一个换行符,否则将什么都不会发送)。如果系统中运行了klogd和syslogd进程,那么内核消息就会被完整地添加到/var/log/messages文件中(或者根据你的syslogd进程的配置状况进行发送) 而忽略 console_loglevel,如果klogd没有运行, 那么消息将不会到达用户空间,除非你对/proc/kmsg文件读取(实际上这项工作已被较早的dmesg命令完成)。当使用klogd时,你应该记住它不会 保留重复的消息行; 对于它接收到的重复消息,它只会保留第一条。 

        The variable console_loglevel is initialized to DEFAULT_CONSOLE_LOGLEVEL and can be modified through the sys_syslog system call. One way to change it is by specifying the -c switch when invoking klogd, as specified in the klogd manpage. Note that to change the current value, you must first kill klogd and then restart it with the -c option. Alternatively, you can write a program to change the console loglevel. You'll find a version of such a program in misc-progs/setlevel.c in the source files provided on O'Reilly's FTP site. The new level is specified as an integer value between 1 and 8, inclusive. If it is set to 1, only messages of level 0 (KERN_EMERG) reach the console; if it is set to 8, all messages, including debugging ones, are displayed. 

         被初始化为 DEFAULT_CONSOLE_LOGLEVELconsole_loglevel 变量可以通过 sys_syslog 系统调用修改。改变它内容的一个方法就是在调用klogd时使用-c选项,具体参考klogd的man帮助。请注意,为了改变当前的数值,你必须首先结束klogd进程,并且用-c选项重新启动它。 另一种方法是,你可以写一个应用程序来改变控制台的 记录等级。你 可以在O'Reilly的FTP站点提供的源代码文件中找到/misc-progs/setlevel.c文件,其中就有一个这样的程序。新 记录级为一个1到8的整数。如果设置为1, 那么只有优先级为 0(KERN_EMERG) 的消息才可以到达控制台;如果等级设置为8,那么包括调试信息在内的所有消息都会 被显示。 

        It is also possible to read and modify the console loglevel using the text file /proc/sys/kernel/printk. The file hosts four integer values: the current loglevel, the default level for messages that lack an explicit loglevel, the minimum allowed loglevel, and the boot-time default loglevel. Writing a single value to this file changes the current loglevel to that value; thus, for example, you can cause all kernel messages to appear at the console by simply entering: 

        也可以 通过文本文件/proc/sys/kernel/printk来获取和更改控制台的 记录等级。这个文件中存储着四个 整型数值: 当前记录级,缺省记录级,最低记录级和启动时刻的缺省 记录级。 可以向该文件写入一个单一数值来改变当前记录级;例如,如果你可以想所有的内核消息都可以在控制台中显示,可以使用以下命令: 

# echo 8 > /proc/sys/kernel/printk 

        It should now be apparent why the hello.c sample had the KERN_ALERT; markers; they are there to make sure that the messages appear on the console. 

         现在你应该明白在 hello.c 示例代码中为什么会有 KERN_ALERT; 标识了吧;这样做可以保证消息顺利地输出到控制台中
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值