我正在制作一个非常简单的 hello world 内核模块并得到一些疯狂的行为。这一直有效,直到我升级到内核 3.3.8,现在它......嗯,它init
在退出时调用函数,exit
在初始化时调用函数。我已经确定我的名字是正确的
// Needed for module definitions
#include <linux/module.h>
// Needed for initilization modules
#include <linux/init.h>
// Must declare some license
MODULE_LICENSE("Dual BSD/GPL");
// Function to be called on insmod
// Returns 0 on success
static int __init mymod_init(void)
{
// Prints kernel alert. Check /var/log/syslog
printk(KERN_ALERT "Module was loaded, this is the printk.");
return 0;
}
// Function to be called on rmmod
static void __exit mymod_exit(void)
{
// Prints kernel alert. Check /var/log/syslog
printk(KERN_ALERT "Module was unloaded, this is the printk");
}
// Register these functions
module_init(mymod_init);
module_exit(mymod_exit);
样本输出:
root@cop4610:/home/cop4610/Downloads/linux-3.3.8/mymodule# insmod mymodule.ko root@cop4610:/home/cop4610/Downloads/linux-3.3.8/mymodule# tail /var/log/syslog Oct 12 10:08:20 cop4610 内核:[633.567832] 模块已卸载,这是 printk
以下是现场视频: http ://www.youtube.com/watch?v=8aJNSpCd7as&feature=youtu.be