#include #include #include int party_init(void) { // Use dmesg to view the log printk(KERN_INFO, "Start the Party!!!\n"); return 0; } void party_exit(void) { printk(KERN_INFO, "The Party's OVER!\n"); } module_init(party_init); module_exit(party_exit); MODULE_LICENSE("MIT"); MODULE_DESCRIPTION("Party Module"); MODULE_AUTHOR("xlgmokha");