内核模块打印的信息越多越好调试,但是打印越多程序运行越慢,在正式版本中更加不能添加非出错提示类信息。
添加内核参数,设置信息打印级别,可以实现在线调试。
内核参数:test01_print_level
初始化为不打印,需要调试时,可以提高打印级别,打印出DEBUG信息、TRACE信息等等,完成后可再降低到不打印级别。
代码如下:
<test01_modules.c>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/timer.h>
#include "test01_module.h"
int test01_print_level = NOPRN_LEVEL;
module_param(test01_print_level, int, 0644);
MODULE_PARM_DESC(test01_print_level, "test print level");
struct timer_list test01_timer;
static void test01_sleep_timeout(int data)
{
}
int __init test01_module_init(void)
{
}
void __exit test01_module_exit(void)
{
}
module_init(test01_module_init);
module_exit(test01_module_exit);
MODULE_LICENSE("Dual BSD/GPL");
MODULE_VERSION("1.0");
<test01_module.h>
#ifndef _TEST01_MODULE_H_
#define _TEST01_MODULE_H_
#define NOPRN_LEVEL 0
#define DEBUG_LEVEL 1
#define TRACE_LEVEL 2
#define ALLPRN_LEVEL 3
extern int test01_print_level;
#define DEBUG(args...)
#define TRACE(args...)
#endif
<Makefile>
ifneq ($(KERNELRELEASE),)
export EXTRA_CFLAGS := -I$(PWD)/../include/
# second run in kernel dir
obj-m := $(MODNAME).o
$(MODNAME)-objs = $(LOCOBJS)
else
# first run in module dir
KDIR := /usr/src/kernels/2.6.32-220.el6.x86_64/
PWD:= $(shell pwd)
SRCS := $(shell echo *.c)
LOCOBJS := $(SRCS:.c=.o)
MODNAME = $(shell basename `pwd`)
export LOCOBJS
export MODNAME
default:
clean:
install:
endif