内核数据结构:链表,队列,映射二叉树
链表代码在中声明,其数据结构很简单:struct list_head { struct list_head *next; struct list_head *prev;};#define LIST_HEAD_INIT(name) { &(name), &(name) }#define LIST_HEAD(name) \ str