最近用到了list_head,在这里记录一下。如果要搞清楚list_head的使用方法,需要了解container_of的原理。container_of可以参考:container_of宏的简介及使用-CSDN博客
先上测试的驱动代码:
#include<linux/init.h> //初始换函数
#include<linux/kernel.h> //内核头文件
#include<linux/module.h> //模块的头文件
#include<linux/types.h>
#include<linux/slab.h>struct st_diag_info{struct list_head list;int module_ID;int event_ID;char data[0];
};int zm_list_del(struct list_head *p)
{p->prev->next = p->next;p->next->prev = p->prev;return 0;
}static int print_list(struct list_head *info_list)
{struct list_head *p = NULL;struct st_diag_info *entry = NULL;list_for_each(p, info_list){entry = list_entry(p, struct st_diag_info, list);printk("module_ID=%d event_ID=%d\n", entr