治肾虚不含糖,专注内核性能优化二十年。 https://github.com/KnightKu
发布时间:2013-05-14 10:47:32
1. 出现“disagrees about version of symbol module_layout“错误 参考: http://stackoverflow.com/questions/2720177/module-layout-version-incompatibility http://blog.csdn.net/wdove/article/details/6561650 http://lagignition.blog.163.com/blog/static/12873002.........【阅读全文】
发布时间:2013-05-08 16:34:22
创建内核线程比较常用的接口有:kthread_create, kthread_run,这是kernel.h里面的两个宏,原型如下:#define kthread_create(threadfn, data, namefmt, arg...) \ kthread_create_on_node(threadfn, data, -1, namefmt, ##arg)参数有四个:threadfn---创建的线程需要执行的任务函数,类型是 int (*th.........【阅读全文】
发布时间:2013-04-23 11:33:23
如果你要查看文件的每个部分是谁修改的, 那么 git blame 就是不二选择. 只要运行'git blame [filename]', 你就会得到整个文件的每一行的详细修改信息:包括commit SHA串,日期和作者:[root@guz linux-2.6]# git blame kernel/cgroup.c ddbcc7e8 (Paul Menage .........【阅读全文】