博客已全部转移至个人站 www.jasonwho.com
全部博文(39)
发布时间:2013-04-18 15:44:54
module_param() 和 module_param_array() 的作用是让全局变量对 insmod 可见,即在使用形如insmod hello.ko var=xxx,使模块装载时可重新赋值变量var为xxx;module_param_array() 宏的第三个参数用来记录用户 insmod 时提供的给这个数组的元素个数,NULL .........【阅读全文】
发布时间:2013-04-11 12:17:43
习惯了用户态应用程序的man手册,kernel下没有man是不是感觉很不完美呢?别着急,仅需三步就让你的kernel也能man起来下载生成man文档的工具xmlto-0.0.20.tar.bz2,解压安装: ./configure ; make ;make install在kernel源码根目录下执行make mandocs,生成关于kernel的man手册;最后执行安装:make i.........【阅读全文】
发布时间:2013-04-08 09:55:42
Someday, u might find urself accidentally using printk() instead of printf() in ur user-space code. When that day comes, u can say u r a true kernel hacker!Good Luck, Hackers!......【阅读全文】
发布时间:2013-04-07 16:30:15
学习linux内核时看到的CFS概念,查阅了比较有价值的一篇文章:From IBMhttp://www.ibm.com/developerworks/cn/linux/l-completely-fair-scheduler/......【阅读全文】