~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/translations/zh_CN/core-api/printk-basics.rst

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 .. SPDX-License-Identifier: GPL-2.0
  2 .. include:: ../disclaimer-zh_CN.rst
  3 
  4 :Original: Documentation/core-api/printk-basics.rst
  5 
  6 :翻译:
  7 
  8  司延腾 Yanteng Si <siyanteng@loongson.cn>
  9  周彬彬 Binbin Zhou <zhoubinbin@loongson.cn>
 10 
 11 .. _cn_printk-basics.rst:
 12 
 13 ==================
 14 使用printk记录消息
 15 ==================
 16 
 17 printk()是Linux内核中最广为人知的函数之一。它是我们打印消息的标准工具,通常也是追踪和调试
 18 的最基本方法。如果你熟悉printf(3),你就能够知道printk()是基于它的,尽管它在功能上有一些不
 19 同之处:
 20 
 21   - printk() 消息可以指定日志级别。
 22 
 23   - 格式字符串虽然与C99基本兼容,但并不遵循完全相同的规范。它有一些扩展和一些限制(没
 24     有 ``%n`` 或浮点转换指定符)。参见:ref: `如何正确地获得printk格式指定符<printk-specifiers>` 。
 25 
 26 所有的printk()消息都会被打印到内核日志缓冲区,这是一个通过/dev/kmsg输出到用户空间的环
 27 形缓冲区。读取它的通常方法是使用 ``dmesg`` 。
 28 
 29 printk()的用法通常是这样的::
 30 
 31   printk(KERN_INFO "Message: %s\n", arg);
 32 
 33 其中 ``KERN_INFO`` 是日志级别(注意,它与格式字符串连在一起,日志级别不是一个单独的参数)。
 34 可用的日志级别是:
 35 
 36 
 37 +----------------+--------+-----------------------------------------------+
 38 | 名称           | 字符串 |  别名函数                                     |
 39 +================+========+===============================================+
 40 | KERN_EMERG     | "0"    | pr_emerg()                                    |
 41 +----------------+--------+-----------------------------------------------+
 42 | KERN_ALERT     | "1"    | pr_alert()                                    |
 43 +----------------+--------+-----------------------------------------------+
 44 | KERN_CRIT      | "2"    | pr_crit()                                     |
 45 +----------------+--------+-----------------------------------------------+
 46 | KERN_ERR       | "3"    | pr_err()                                      |
 47 +----------------+--------+-----------------------------------------------+
 48 | KERN_WARNING   | "4"    | pr_warn()                                     |
 49 +----------------+--------+-----------------------------------------------+
 50 | KERN_NOTICE    | "5"    | pr_notice()                                   |
 51 +----------------+--------+-----------------------------------------------+
 52 | KERN_INFO      | "6"    | pr_info()                                     |
 53 +----------------+--------+-----------------------------------------------+
 54 | KERN_DEBUG     | "7"    | pr_debug() and pr_devel()  若定义了DEBUG      |
 55 +----------------+--------+-----------------------------------------------+
 56 | KERN_DEFAULT   | ""     |                                               |
 57 +----------------+--------+-----------------------------------------------+
 58 | KERN_CONT      | "c"    | pr_cont()                                     |
 59 +----------------+--------+-----------------------------------------------+
 60 
 61 
 62 日志级别指定了一条消息的重要性。内核根据日志级别和当前 *console_loglevel* (一个内核变量)决
 63 定是否立即显示消息(将其打印到当前控制台)。如果消息的优先级比 *console_loglevel* 高(日志级
 64 别值较低),消息将被打印到控制台。
 65 
 66 如果省略了日志级别,则以 ``KERN_DEFAULT`` 级别打印消息。
 67 
 68 你可以用以下方法检查当前的 *console_loglevel* ::
 69 
 70   $ cat /proc/sys/kernel/printk
 71   4        4        1        7
 72 
 73 结果显示了 *current*, *default*, *minimum* 和 *boot-time-default* 日志级别
 74 
 75 要改变当前的 console_loglevel,只需在 ``/proc/sys/kernel/printk`` 中写入所需的
 76 级别。例如,要打印所有的消息到控制台上::
 77 
 78   # echo 8 > /proc/sys/kernel/printk
 79 
 80 另一种方式,使用 ``dmesg``::
 81 
 82   # dmesg -n 5
 83 
 84 设置 console_loglevel 打印 KERN_WARNING (4) 或更严重的消息到控制台。更多消息参
 85 见 ``dmesg(1)`` 。
 86 
 87 作为printk()的替代方案,你可以使用 ``pr_*()`` 别名来记录日志。这个系列的宏在宏名中
 88 嵌入了日志级别。例如::
 89 
 90   pr_info("Info message no. %d\n", msg_num);
 91 
 92 打印 ``KERN_INFO`` 消息。
 93 
 94 除了比等效的printk()调用更简洁之外,它们还可以通过pr_fmt()宏为格式字符串使用一个通用
 95 的定义。例如,在源文件的顶部(在任何  ``#include`` 指令之前)定义这样的内容。::
 96 
 97   #define pr_fmt(fmt) "%s:%s: " fmt, KBUILD_MODNAME, __func__
 98 
 99 会在该文件中的每一条 pr_*() 消息前加上发起该消息的模块和函数名称。
100 
101 为了调试,还有两个有条件编译的宏:
102 pr_debug()和pr_devel(),除非定义了 ``DEBUG`` (或者在pr_debug()的情况下定义了
103 ``CONFIG_DYNAMIC_DEBUG`` ),否则它们不会被编译。
104 
105 
106 函数接口
107 ========
108 
109 该API在以下内核代码中:
110 
111 include/linux/printk.h

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php