耍酷帽子

文章
6
资源
0
加入时间
2年10月21天

一些内核模块函数(1)

//给一个给定的addr,要是这个addr在某个模块的【地址空间】中,则返回指向该模块的指针struct module *__module_address(unsigned long addr){ struct module *mod; if (addr < module_addr_min || addr > module_addr_max) return NULL; list_fo...