Linux内核printk宏开关

本文介绍了在内核开发中如何使用printk宏开关进行调试信息的控制。通过在代码中设置开关,可以在不需要调试信息时关闭printk,避免对性能的影响,方便后续的调试工作。
摘要由CSDN通过智能技术生成

在内核开发时经常使用printk打印调试信息,但是printk又对性能有一定的影响,比如写了一个驱动调试完毕要发布或者做内核实验调试完毕正式测试时将这些printk删除又很麻烦,之后再想调试又要重新添加。

在内核中可以使用printk宏开关来控制这些信息的显示:

#define DEBUG_A
#ifdef DEBUG_A
#define DEBUG(fmt, args...) printk( KERN_DEBUG "DEBUG_A: " fmt, ## args)
#else
#define DEBUG(fmt, args...)
#endif

使用案例

debug.c:

#include <linux/init.h>
#include <linux/module.h>
#include <linux/kernel.h>
 
#define DEBUG_A
#ifdef DEBUG_A
#define DEBUG(fmt, args...) printk( KERN_DEBUG "DEBUG_A: " fmt, ## args)
#else
#define DEBUG(fmt, args...)
#endif
 
static int __init hello_init(void)
{
    DEBUG("hello this is debug! \n");
    return 0;
}
 
static void __exit hello_exit(void)
{
    DEBUG("exit! \n");
}
module_init(hello_init);
module_exit(hello_exit);
MODULE_LICENSE("GPL");

Makefile:

ifneq ($(KERNELRELEA
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值