我正在编写一个简单的hello world模块,发现即使不包含kernel.h,print也能正常工作。我的节目是
#include<linux/module.h>
int hello_init(void)
{
printk(KERN_ALERT "Hello World\n");
return 0;
}
void hello_exit(void)
{
printk(KERN_ALERT "Good Bye\n");
}
module_init(hello_init);
module_exit(hello_exit);
发现定义位于kern_levels.h