zoukankan      html  css  js  c++  java
  • dev_dbg()

     

    linux设备驱动调试,我们在内核中看到内核使用dev_dbg来控制输出信息,这个函数的实质是调用 printk(KERN_DEBUG )来输出打印信息。要打开这个开关需要下面两步。
         1、打开调试开关:你调试的文件中必然包含了<linux/device.h>,或者《linux /paltforam_device.h》,后者包含了前者,在包含此头文件之前,使用#define DEBUG 1 来打开调试开关:例如
    #include <linux/kernel.h>
    #include <linux/init.h>
    #include <linux/clk.h>
    #include <linux/module.h>
    #define DEBUG    1
    #include <linux/platform_device.h>
         在linux/device.h文件中:
    #define dev_printk(level, dev, format, arg...)    \
        printk(level "%s %s: " format , dev_driver_string(dev) , (dev)->bus_id , ## arg)
    #ifdef DEBUG
    #define dev_dbg(dev, format, arg...)        \
        dev_printk(KERN_DEBUG , dev , format , ## arg)
    #else
    static inline int __attribute__ ((format (printf, 2, 3)))
    dev_dbg(struct device * dev, const char * fmt, ...)
    {
        return 0;
    }
    #endif
    但是这个打开了之后,也不能顺利的输出信息,原因是printk有默认的信息级别。
        linux/kernel文件中
    #define    KERN_EMERG    "<0>"    /* system is unusable            */
    #define    KERN_ALERT    "<1>"    /* action must be taken immediately    */
    #define    KERN_CRIT    "<2>"    /* critical conditions            */
    #define    KERN_ERR    "<3>"    /* error conditions            */
    #define    KERN_WARNING    "<4>"    /* warning conditions            */
    #define    KERN_NOTICE    "<5>"    /* normal but significant condition    */
    #define    KERN_INFO    "<6>"    /* informational            */
    #define    KERN_DEBUG    "<7>"    /* debug-level messages            */
    可以看到KERN_DEBUG是级别最低的。
    2、修改文件kernel/printk文件
    /* printk's without a loglevel use this.. */
    #define DEFAULT_MESSAGE_LOGLEVEL 4 /* KERN_WARNING */
    /* We show everything that is MORE important than this.. */
    #define MINIMUM_CONSOLE_LOGLEVEL 1 /* Minimum loglevel we let people use */
    #define DEFAULT_CONSOLE_LOGLEVEL 8 /* anything MORE serious than KERN_DEBUG */
       其中DEFAULT_CONSOLE_LOGLEVEL 为终端console输出的最低级别,比这严重的都将输出。原来该值为7,则调试信息无法输出,修改为8则全部有输出。

  • 相关阅读:
    windows64系统下安装 redis服务 (详细)
    周期信号的傅里叶级数表示
    LeetCode 36——有效的数独
    LeetCode 3——无重复字符的最长子串
    线性时不变系统的卷积
    信号与系统
    C++ 学习笔记之——输入和输出
    LeetCode 74——搜索二维矩阵
    LeetCode 389——找不同
    LeetCode 2——两数相加
  • 原文地址:https://www.cnblogs.com/cute/p/2047868.html
Copyright © 2011-2022 走看看