治肾虚不含糖,专注内核性能优化二十年。 https://github.com/KnightKu
发布时间:2013-05-14 11:30:38
netlink socket 单播 广播 netlink_broadcast netlink_unicast netlink_kernel_create......【阅读全文】
发布时间: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-13 14:37:21
前几天写的一个demo,没几行代码,但是涵盖的东西比较多:撰写模块,创建内核线程,节点及cpu亲缘性设置,内核态获取时间,内核态分配大内存,时间处理等等...已备后用。点击(此处)折叠或打开#include <linux/module.h>#include <linux/init.h>#include <linux.........【阅读全文】
发布时间: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.........【阅读全文】