guowenxue
2024-04-05 5e993f63cd04f94bf3a7d2d1e8140644df5db56b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <linux/init.h>
#include <linux/module.h>
#include <linux/kernel.h>
 
static __init int hello_init(void)
{
    printk(KERN_ALERT "hello module installed.\n");
    return 0;
}
 
static __exit void hello_exit(void)
{
    printk(KERN_ALERT "hello module removed.\n");
}
 
module_init(hello_init);
module_exit(hello_exit);
 
MODULE_LICENSE("Dual BSD/GPL");
MODULE_AUTHOR("GuoWenxue <guowenxue@gmail.com>");