栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

拒绝造轮子!如何移植并使用Linux内核的通用链表(附完整代码实现)

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

拒绝造轮子!如何移植并使用Linux内核的通用链表(附完整代码实现)

> 在实际的工作中,我们可能会经常使用链表结构来存储数据,特别是嵌入式开发,经常会使用linux内核最经典的双向链表 list_head。本篇文章详细介绍了Linux内核的通用链表是如何实现的,对于经常使用的函数都给出了详细的说明和测试用例,并且移植了Linux内核的链表结构,在任意平台都可以方便的调用内核已经写好的函数。建议收藏,以备不时之需!

@[TOC]

链表简介

链表是一种常用的组织有序数据的数据结构,它通过指针将一系列数据节点连接成一条数据链,是线性表的一种重要实现方式。相对于数组,链表具有更好的动态性,建立链表时无需预先知道数据总量,可以随机分配空间,可以高效地在链表中的任意位置实时插入或删除数据。
  通常链表数据结构至少应包含两个域:数据域和指针域,数据域用于存储数据,指针域用于建立与下一个节点的联系。按照指针域的组织以及各个节点之间的联系形式,链表又可以分为单链表、双链表、循环链表等多种类型,下面分别给出这几类常见链表类型的示意图:

单链表

单链表是最简单的一类链表,它的特点是仅有一个指针域指向后继节点(next),因此,对单链表的遍历只能从头至尾(通常是NULL空指针)顺序进行。

双链表

通过设计前驱和后继两个指针域,双链表可以从两个方向遍历,这是它区别于单链表的地方。如果打乱前驱、后继的依赖关系,就可以构成"二叉树";如果再让首节点的前驱指向链表尾节点、尾节点的后继指向首节点,就构成了循环链表;如果设计更多的指针域,就可以构成各种复杂的树状数据结构。

循环链表

循环链表的特点是尾节点的后继指向首节点。前面已经给出了双链表的示意图,它的特点是从任意一个节点出发,沿两个方向的任何一个,都能找到链表中的任意一个数据。如果去掉前驱指针,就是单循环链表。

Linux内核中的链表

上面介绍了普通链表的实现方式,可以看到数据域都是包裹在节点指针中的,通过节点指针访问下一组数据。但是 Linux内核的链表实现可以说比较特殊,只有前驱和后继指针,而没有数据域。链表的头文件是在include/list.h(Linux2.6内核)下。在实际工作中,也可以将内核中的链表拷贝出来供我们使用,就需不要造轮子了。

链表的定义

内核链表只有前驱和后继指针,并不包含数据域,这个链表具备通用性,使用非常方便。因此可以很容易的将内核链表结构体包含在任意数据的结构体中,非常容易扩展。我们只需要将链表结构体包括在数据结构体中就可以。下面看具体的代码。


  内核链表的结构

//链表结构
struct list_head
{
    struct list_head *prev;
    struct list_head *next;
};

当需要用内核的链表结构时,只需要在数据结构体中定义一个struct list_head{}类型的结构体成员对象就可以。这样,我们就可以很方便地使用内核提供给我们的一组标准接口来对链表进行各种操作。我们定义一个学生结构体,里面包含学号和数学成绩。结构体如下:

 struct student
{
    struct list_head list;//暂且将链表放在结构体的第一位
    int ID;
    int math;   
};
链表的初始化 内核实现
#define LIST_HEAD_INIT(name) { &(name), &(name) }

#define LIST_HEAD(name) 
	struct list_head name = LIST_HEAD_INIT(name)
    
static inline void INIT_LIST_HEAD(struct list_head *list)
{
	list->next = list;
	list->prev = list;
}

说明

INIT_LIST_HEAD 和LIST_HEAD都可以初始化链表,二者的区别如下:
  LIST_HEAD(stu_list) 初始化链表时会顺便创建链表对象。

//LIST_HEAD(stu_list)展开如下
struct list_head stu_list= { &(stu_list), &(stu_list) };

INIT_LIST_HEAD(&stu1.stu_list) 初始化链表时需要我们已经有了一个链表对象stu1_list。

`我们可以看到链表的初始化其实非常简单,就是让链表的前驱和后继都指向了自己。

举例
INIT_LIST_HEAD(&stu1.stu_list);
链表增加节点 内核实现


#ifndef CONFIG_DEBUG_LIST
static inline void __list_add(struct list_head *new,
			      struct list_head *prev,
			      struct list_head *next)
{
	next->prev = new;
	new->next = next;
	new->prev = prev;
	prev->next = new;
}
#else
extern void __list_add(struct list_head *new,
			      struct list_head *prev,
			      struct list_head *next);
#endif


#ifndef CONFIG_DEBUG_LIST
static inline void list_add(struct list_head *new, struct list_head *head)
{
	__list_add(new, head, head->next);
}
#else
extern void list_add(struct list_head *new, struct list_head *head);
#endif



static inline void list_add_tail(struct list_head *new, struct list_head *head)
{
	__list_add(new, head->prev, head);
}
说明

list_add为头插法,即在链表头部(head节点)前插入节点。最后打印的时候,先插入的先打印,后插入的后打印。例如原链表为1->2->3,使用list_add插入4后变为,4->1->2->3。因为链表时循环的,而且通常没有首尾节点的概念,所以可以把任何一个节点当成head。
  同理,list_add_tail为尾插法,即在链表尾部(head节点)插入节点。最后打印的时候,先插入的后打印,后插入的先打印。例如原链表为1->2->3,使用list_add_tail插入4后变为,1->2->3->4。

举例
#include "mylist.h"
#include 
#include 
struct student
{
    struct list_head stu_list;
    int ID;
    int math;   
};

int main()
{
    struct student *p;
    struct student *q;
    struct student stu1;
    struct student stu2;  
    struct list_head *pos;
    //链表的初始化
    INIT_LIST_HEAD(&stu1.stu_list);
    INIT_LIST_HEAD(&stu2.stu_list);
    //头插法创建stu stu1链表
     for (int i = 0;i < 6;i++) {
  p = (struct student *)malloc(sizeof(struct student));
  p->ID=i;
  p->math = i+80;
  //头插法
  list_add(&p->stu_list,&stu1.stu_list);
  //尾插法
  //list_add_tail(&p->list,&stu.list);
     }
     
    printf("list_add: rn");
    list_for_each(pos, &stu1.stu_list) {
 printf("ID = %d,math = %dn",((struct student*)pos)->ID,((struct student*)pos)->math);
    }
    
    //尾插法创建stu stu1链表
     for (int i = 0;i < 6;i++) {
  p = (struct student *)malloc(sizeof(struct student));
  p->ID=i;
  p->math = i+80;
  //头插法
  //list_add(&p->stu_list,&stu1.stu_list);
  //尾插法
  list_add_tail(&p->stu_list,&stu2.stu_list);
     }
     
    printf("list_add_tail: rn");
    list_for_each(pos, &stu2.stu_list) {
 printf("ID = %d,math = %dn",((struct student*)pos)->ID,((struct student*)pos)->math);
    }
    return 0; 
}

链表删除节点 内核实现
//原来内核设置的删除链表后的指向位置
// # define POISON_POINTER_DELTA 0
// #define LIST_POISON1  ((void *) 0x00100100 + POISON_POINTER_DELTA)
// #define LIST_POISON2  ((void *) 0x00200200 + POISON_POINTER_DELTA)

//这里我们设置为NULL 内核中定义NULL 为0
#define NULL ((void *)0)
#define LIST_POISON1  NULL
#define LIST_POISON2  NULL

static inline void __list_del(struct list_head * prev, struct list_head * next)
{
	next->prev = prev;
	prev->next = next;
}


#ifndef CONFIG_DEBUG_LIST
static inline void list_del(struct list_head *entry)
{
	__list_del(entry->prev, entry->next);
	entry->next = LIST_POISON1;
	entry->prev = LIST_POISON2;
}
#else
extern void list_del(struct list_head *entry);
#endif

说明

链表删除之后,entry的前驱和后继会分别指向LIST_POISON1和LIST_POISON2,这个是内核设置的一个区域,但是在本例中将其置为了NULL。

举例
#include "mylist.h"
#include 
#include 
struct student
{
    struct list_head stu_list;
    int ID;
    int math;   
};
int main()
{
    struct student *p;
    struct student *q;
    struct student stu1;
    struct student stu2;  
    struct list_head *pos1;
    //注意这里的pos2,后面会解释为什么定义为
    struct student *pos2;
    //stu = (struct student*)malloc(sizeof(struct student));
    //链表的初始化
    INIT_LIST_HEAD(&stu1.stu_list);
    INIT_LIST_HEAD(&stu2.stu_list);
    LIST_HEAD(stu);
    //头插法创建stu stu1链表
     for (int i = 0;i < 6;i++) {
  p = (struct student *)malloc(sizeof(struct student));
  p->ID=i;
  p->math = i+80;
  //头插法
  list_add(&p->stu_list,&stu1.stu_list);
  //尾插法
  //list_add_tail(&p->list,&stu.list);
     }
     
    printf("list_add: rn");
    list_for_each(pos1, &stu1.stu_list) {
 printf("ID = %d,math = %dn",((struct student*)pos1)->ID,((struct student*)pos1)->math);
    }
    
    //删除
    list_for_each_entry(pos2,&stu1.stu_list,stu_list) {
 if (pos2->ID == 4) {
     list_del(&pos2->stu_list);
     break;
 }
    }
    
    printf("list_delrn");
    list_for_each_entry(pos2,&stu1.stu_list,stu_list) {
 printf("ID = %d,math = %dn",pos2->ID,pos2->math);
    }
    return 0; 

}

链表替换节点 内核实现

static inline void list_replace(struct list_head *old,
				struct list_head *new)
{
	new->next = old->next;
	new->next->prev = new;
	new->prev = old->prev;
	new->prev->next = new;
}

static inline void list_replace_init(struct list_head *old,
					struct list_head *new)
{
	list_replace(old, new);
	INIT_LIST_HEAD(old);//重新初始化
}
说明

list_replace使用新的节点替换旧的节点。
  list_replace_init与list_replace不同之处在于,list_replace_init会将旧的节点重新初始化,让前驱和后继指向自己。

举例
#include "mylist.h"
#include 
#include 
struct student
{
    struct list_head stu_list;
    int ID;
    int math;   
};
int main()
{
    struct student *p;
    struct student *q;
    struct student stu1;
    struct student stu2;  
    struct list_head *pos1;
    struct student *pos2;
    struct student new_obj={.ID=100,.math=100}; 
    //stu = (struct student*)malloc(sizeof(struct student));
    //链表的初始化
    INIT_LIST_HEAD(&stu1.stu_list);
    INIT_LIST_HEAD(&stu2.stu_list);
    LIST_HEAD(stu);
    //头插法创建stu stu1链表
     for (int i = 0;i < 6;i++) {
  p = (struct student *)malloc(sizeof(struct student));
  p->ID=i;
  p->math = i+80;
  //头插法
  list_add(&p->stu_list,&stu1.stu_list);
  //尾插法
  //list_add_tail(&p->list,&stu.list);
     }
    printf("list_add: rn");
    list_for_each(pos1, &stu1.stu_list) {
 printf("ID = %d,math = %dn",((struct student*)pos1)->ID,((struct student*)pos1)->math);
    }
 
    //替换
    list_for_each_entry(pos2,&stu1.stu_list,stu_list) {
 if (pos2->ID == 4) {
     list_replace(&pos2->stu_list,&new_obj.stu_list);
     break;
 }
    }
    printf("list_replacern");
    list_for_each_entry(pos2,&stu1.stu_list,stu_list) {
 printf("ID = %d,math = %dn",pos2->ID,pos2->math);
    }
    return 0; 
}

链表删除并插入节点 内核实现

static inline void list_move(struct list_head *list, struct list_head *head)
{
	__list_del(list->prev, list->next);
	list_add(list, head);
}


static inline void list_move_tail(struct list_head *list,
				  struct list_head *head)
{
	__list_del(list->prev, list->next);
	list_add_tail(list, head);
}
说明

list_move函数实现的功能是删除list指向的节点,同时将其以头插法插入到head中。list_move_tail和list_move功能类似,只不过是将list节点插入到了head的尾部。

举例
#include "mylist.h"
#include 
#include 
struct student
{
    struct list_head stu_list;
    int ID;
    int math;   
};
int main()
{
    struct student *p;
    struct student *q;
    struct student stu1;
    struct student stu2;  
    struct list_head *pos1;
    struct student *pos2;
    struct student new_obj={.ID=100,.math=100}; 
    //stu = (struct student*)malloc(sizeof(struct student));
    //链表的初始化
    INIT_LIST_HEAD(&stu1.stu_list);
    INIT_LIST_HEAD(&stu2.stu_list);
    LIST_HEAD(stu);
    //头插法创建stu stu1链表
     for (int i = 0;i < 6;i++) {
  p = (struct student *)malloc(sizeof(struct student));
  p->ID=i;
  p->math = i+80;
  //头插法
  list_add(&p->stu_list,&stu1.stu_list);
  //尾插法
  //list_add_tail(&p->list,&stu.list);
     }
    printf("list_add: rn");
    list_for_each(pos1, &stu1.stu_list) {
 printf("ID = %d,math = %dn",((struct student*)pos1)->ID,((struct student*)pos1)->math);
    }
 
    //移位替换
    list_for_each_entry(pos2,&stu1.stu_list,stu_list) {
 if (pos2->ID == 0) {
     list_move(&pos2->stu_list,&stu1.stu_list);
     break;
 }
    }
    printf("list_movern");
    list_for_each_entry(pos2,&stu1.stu_list,stu_list) {
 printf("ID = %d,math = %dn",pos2->ID,pos2->math);
    }
    return 0; 
}

链表的合并 内核实现
static inline void __list_splice(struct list_head *list,
				 struct list_head *head)
{
	struct list_head *first = list->next;
	struct list_head *last = list->prev;
	struct list_head *at = head->next;

	first->prev = head;
	head->next = first;

	last->next = at;
	at->prev = last;
}


static inline void list_splice(struct list_head *list, struct list_head *head)
{
	if (!list_empty(list))
		__list_splice(list, head);
}


static inline void list_splice_init(struct list_head *list,
				    struct list_head *head)
{
	if (!list_empty(list)) {
		__list_splice(list, head);
		INIT_LIST_HEAD(list);//置空
	}
}
说明

list_splice完成的功能是合并两个链表。假设当前有两个链表,表头分别是stu_list1和stu_list2(都是struct list_head变量),当调用list_splice(&stu_list1,&stu_list2)时,只要stu_list1非空,stu_list1链表的内容将被挂接在stu_list2链表上,位于stu_list2和stu_list2.next(原stu_list2表的第一个节点)之间。新stu_list2链表将以原stu_list1表的第一个节点为首节点,而尾节点不变。

list_splice_init和list_splice类似,只不过在合并完之后,调用INIT_LIST_HEAD(list)将list设置为空链。

用例
#include "mylist.h"
#include 
#include 
struct student
{
    struct list_head stu_list;
    int ID;
    int math;   
};
int main()
{
    struct student *p;
    struct student *q;
    struct student stu1;
    struct student stu2;  
    struct list_head *pos1;
    struct student *pos2;
    struct student new_obj={.ID=100,.math=100}; 
    //stu = (struct student*)malloc(sizeof(struct student));
    //链表的初始化
    INIT_LIST_HEAD(&stu1.stu_list);
    INIT_LIST_HEAD(&stu2.stu_list);
    LIST_HEAD(stu);
    //头插法创建stu1 list链表
     for (int i = 0;i < 6;i++) {
  p = (struct student *)malloc(sizeof(struct student));
  p->ID=i;
  p->math = i+80;
  //头插法
  list_add(&p->stu_list,&stu1.stu_list);
  //尾插法
  //list_add_tail(&p->list,&stu.list);
     }
    printf("stu1: rn");
    list_for_each(pos1, &stu1.stu_list) {
 printf("ID = %d,math = %dn",((struct student*)pos1)->ID,((struct student*)pos1)->math);
    }
    //头插法创建stu2 list 链表
     for (int i = 0;i < 3;i++) {
  q = (struct student *)malloc(sizeof(struct student));
  q->ID=i;
  q->math = i+80;
  //头插法
  list_add(&q->stu_list,&stu2.stu_list);
  //尾插法
  //list_add_tail(&p->list,&stu.list);
     }
    printf("stu2: rn");
    list_for_each(pos1, &stu2.stu_list) {
 printf("ID = %d,math = %dn",((struct student*)pos1)->ID,((struct student*)pos1)->math);
    }

    //合并
    list_splice(&stu1.stu_list,&stu2.stu_list);
    printf("list_splicern");
    list_for_each(pos1, &stu2.stu_list) {
 printf("stu2 ID = %d,math = %dn",((struct student*)pos1)->ID,((struct student*)pos1)->math);
    }
    

    return 0; 
}

链表的遍历 内核实现
//计算member在type中的位置
#define offsetof(type, member)  (size_t)(&((type*)0)->member)
//根据member的地址获取type的起始地址

#define container_of(ptr, type, member) ({   
 const typeof(((type *)0)->member)*__mptr = (ptr);    
    (type *)((char *)__mptr - offsetof(type, member)); })
    

#define list_entry(ptr, type, member) 
	container_of(ptr, type, member)


#define list_first_entry(ptr, type, member) 
	list_entry((ptr)->next, type, member)


#define list_for_each(pos, head) 
	for (pos = (head)->next; prefetch(pos->next), pos != (head); 
 	pos = pos->next)


#define __list_for_each(pos, head) 
	for (pos = (head)->next; pos != (head); pos = pos->next)


#define list_for_each_prev(pos, head) 
	for (pos = (head)->prev; prefetch(pos->prev), pos != (head); 
 	pos = pos->prev)


#define list_for_each_safe(pos, n, head) 
	for (pos = (head)->next, n = pos->next; pos != (head); 
		pos = n, n = pos->next)


#define list_for_each_entry(pos, head, member)				
	for (pos = list_entry((head)->next, typeof(*pos), member);	
	     prefetch(pos->member.next), &pos->member != (head); 	
	     pos = list_entry(pos->member.next, typeof(*pos), member))


#define list_for_each_entry_reverse(pos, head, member)			
	for (pos = list_entry((head)->prev, typeof(*pos), member);	
	     prefetch(pos->member.prev), &pos->member != (head); 	
	     pos = list_entry(pos->member.prev, typeof(*pos), member))


#define list_prepare_entry(pos, head, member) 
	((pos) ? : list_entry(head, typeof(*pos), member))


#define list_for_each_entry_continue(pos, head, member) 		
	for (pos = list_entry(pos->member.next, typeof(*pos), member);	
	     prefetch(pos->member.next), &pos->member != (head);	
	     pos = list_entry(pos->member.next, typeof(*pos), member))


#define list_for_each_entry_from(pos, head, member) 			
	for (; prefetch(pos->member.next), &pos->member != (head);	
	     pos = list_entry(pos->member.next, typeof(*pos), member))


#define list_for_each_entry_safe(pos, n, head, member)			
	for (pos = list_entry((head)->next, typeof(*pos), member),	
		n = list_entry(pos->member.next, typeof(*pos), member);	
	     &pos->member != (head); 					
	     pos = n, n = list_entry(n->member.next, typeof(*n), member))


#define list_for_each_entry_safe_continue(pos, n, head, member) 		
	for (pos = list_entry(pos->member.next, typeof(*pos), member), 		
		n = list_entry(pos->member.next, typeof(*pos), member);		
	     &pos->member != (head);						
	     pos = n, n = list_entry(n->member.next, typeof(*n), member))


#define list_for_each_entry_safe_from(pos, n, head, member) 			
	for (n = list_entry(pos->member.next, typeof(*pos), member);		
	     &pos->member != (head);						
	     pos = n, n = list_entry(n->member.next, typeof(*n), member))


#define list_for_each_entry_safe_reverse(pos, n, head, member)		
	for (pos = list_entry((head)->prev, typeof(*pos), member),	
		n = list_entry(pos->member.prev, typeof(*pos), member);	
	     &pos->member != (head); 					
	     pos = n, n = list_entry(n->member.prev, typeof(*n), member))

说明

list_entry(ptr, type, member)可以得到节点结构体的地址,得到地址后就可以对结构体中的元素进行操作了。依靠list_entry(ptr, type, member)函数,内核链表的增删查改都不需要知道list_head结构体所嵌入式的对象,就可以完成各种操作。(为什么这里使用container_of来定义list_entry(ptr, type, member)结构体呢,下面会详细解释)
  list_first_entry(ptr, type, member)得到的是结构体中第一个元素的地址
  list_for_each(pos, head)是用来正向遍历链表的,pos相当于一个临时的节点,用来不断指向下一个节点。
  list_for_each_prev(pos, head)和list_for_each_entry_reverse(pos, head, member)是用来倒着遍历链表的
  list_for_each_safe(pos, n, head)和list_for_each_entry_safe(pos, n, head, member),这两个函数是为了避免在遍历链表的过程中因pos节点被释放而造成的断链这个时候就要求我们另外提供一个与pos同类型的指针n,在for循环中暂存pos下一个节点的地址。(内核的设计者考虑的真是全面!)
  list_prepare_entry(pos, head, member)用于准备一个结构体的首地址,用在list_for_each_entry_contine()中
  list_for_each_entry_continue(pos, head, member)从当前pos的下一个节点开始继续遍历剩余的链表,不包括pos.如果我们将pos、head、member传入list_for_each_entry,此宏将会从链表的头节点开始遍历。
  list_for_each_entry_continue_reverse(pos, head, member)从当前的pos的前一个节点开始继续反向遍历剩余的链表,不包括pos。
  list_for_each_entry_from(pos, head, member)从pos开始遍历剩余的链表。
  list_for_each_entry_safe_continue(pos, n, head, member)从pos节点的下一个节点开始遍历剩余的链表,并防止因删除链表节点而导致的遍历出错。
  list_for_each_entry_safe_from(pos, n, head, member)从pos节点开始继续遍历剩余的链表,并防止因删除链表节点而导致的遍历出错。其与list_for_each_entry_safe_continue(pos, n, head, member)的不同在于在第一次遍历时,pos没有指向它的下一个节点,而是从pos开始遍历。
  list_for_each_entry_safe_reverse(pos, n, head, member)从pos的前一个节点开始反向遍历一个链表,并防止因删除链表节点而导致的遍历出错。
  list_safe_reset_next(pos, n, member)返回当前pos节点的下一个节点的type结构体首地址。

举例
#include "mylist.h"
#include 
#include 
struct student
{
    struct list_head stu_list;
    int ID;
    int math;   
};
int main()
{
    struct student *p;
    struct student *q;
    struct student stu1;
    struct student stu2;  
    struct list_head *pos1;
    struct student *pos2;
    struct student new_obj={.ID=100,.math=100}; 
    //stu = (struct student*)malloc(sizeof(struct student));
    //链表的初始化
    INIT_LIST_HEAD(&stu1.stu_list);
    INIT_LIST_HEAD(&stu2.stu_list);
    LIST_HEAD(stu);
    //头插法创建stu stu1链表
     for (int i = 0;i < 6;i++) {
  p = (struct student *)malloc(sizeof(struct student));
  p->ID=i;
  p->math = i+80;
  //头插法
  list_add(&p->stu_list,&stu1.stu_list);
  //尾插法
  //list_add_tail(&p->list,&stu.list);
     }
    printf("stu1: rn");
    list_for_each(pos1, &stu1.stu_list) {
 printf("ID = %d,math = %dn",((struct student*)pos1)->ID,((struct student*)pos1)->math);
    }

    printf("list_for_each_prevrn");
    list_for_each_prev(pos1, &stu1.stu_list){
 printf("stu2 ID = %d,math = %dn",((struct student*)pos1)->ID,((struct student*)pos1)->math);
    }

    return 0; 
}


  例子就不都写出来了,感兴趣的可以自己试试。

疑惑解答

之前我们定义结构体的时候是把 struct list_head放在首位的,当使用list_for_each遍历的时候,pos获取的位置就是结构体的位置,也就是链表的位置。如下所示

 struct student
{
    struct list_head list;//暂且将链表放在结构体的第一位
    int ID;
    int math;   
};
    list_for_each(pos, &stu1.stu_list) {
 printf("ID = %d,math = %dn",((struct student*)pos)->ID,((struct student*)pos)->math);
    }

但是当我们把struct list_head list;放在最后时,pos获取的显然就已经不是链表的位置了,那么当我们再次调用list_for_each时就会出错。

 struct student
{  
    int ID;
    int math;   
    struct list_head list;//暂且将链表放在结构体的第一位
};

list_for_each_entry这个函数表示在遍历的时候获取entry,该宏中的pos类型为容器结构类型的指针,这与前面list_for_each中的使用的类型不再相同(这也就是为什么我们上面会分别定义pos1和pos2的原因了),不过这也是情理之中的事,毕竟现在的pos,我要使用该指针去访问数据域的成员age了;head是你使用INIT_LIST_HEAD初始化的那个对象,即头指针,注意,不是头结点;member就是容器结构中的链表元素对象。使用该宏替代前面的方法。这个时候就要用到container_of这个宏了。(再一次感叹内核设计者的伟大)。

关于container_of宏将在下一篇文章详细介绍,这里先知道如何使用就可以。

list.h移植源码

这里需要注意一点,如果是在GNU中使用GCC进行程序开发,可以不做更改,直接使用上面的函数即可;但如果你想把其移植到Windows环境中进行使用,可以直接将prefetch语句删除即可,因为prefetch函数它通过对数据手工预取的方法,减少了读取延迟,从而提高了性能,也就是prefetch是GCC用来提高效率的函数,如果要移植到非GNU环境,可以换成相应环境的预取函数或者直接删除也可,它并不影响链表的功能。


#ifndef _MYLIST_H
#define _MYLIST_H
 //原来链表删除后指向的位置,这里我们修改成 0
// # define POISON_POINTER_DELTA 0
// #define LIST_POISON1  ((void *) 0x00100100 + POISON_POINTER_DELTA)
// #define LIST_POISON2  ((void *) 0x00200200 + POISON_POINTER_DELTA)
#define NULL ((void *)0)
#define LIST_POISON1  NULL
#define LIST_POISON2  NULL

//计算member在type中的位置
#define offsetof(type, member)  (size_t)(&((type*)0)->member)
//根据member的地址获取type的起始地址
#define container_of(ptr, type, member) ({   
 const typeof(((type *)0)->member)*__mptr = (ptr);    
    (type *)((char *)__mptr - offsetof(type, member)); })

//链表结构
struct list_head
{
    struct list_head *prev;
    struct list_head *next;
};
#define LIST_HEAD_INIT(name) { &(name), &(name) }

#define LIST_HEAD(name) 
	struct list_head name = LIST_HEAD_INIT(name)
    
static inline void INIT_LIST_HEAD(struct list_head *list)
{
	list->next = list;
	list->prev = list;
}

static inline void init_list_head(struct list_head *list)
{
    list->prev = list;
    list->next = list;
}

#ifndef CONFIG_DEBUG_LIST
static inline void __list_add(struct list_head *new,
			      struct list_head *prev,
			      struct list_head *next)
{
	next->prev = new;
	new->next = next;
	new->prev = prev;
	prev->next = new;
}
#else
extern void __list_add(struct list_head *new,
			      struct list_head *prev,
			      struct list_head *next);
#endif

//从头部添加

#ifndef CONFIG_DEBUG_LIST
static inline void list_add(struct list_head *new, struct list_head *head)
{
	__list_add(new, head, head->next);
}
#else
extern void list_add(struct list_head *new, struct list_head *head);
#endif
//从尾部添加
static inline void list_add_tail(struct list_head *new, struct list_head *head)
{
    __list_add(new, head->prev, head);
}

static inline  void __list_del(struct list_head *prev, struct list_head *next)
{
    prev->next = next;
    next->prev = prev;
}

static inline void list_del(struct list_head *entry)
{
    __list_del(entry->prev, entry->next);
    entry->next = LIST_POISON1;
    entry->prev = LIST_POISON2;
}


static inline void __list_splice(struct list_head *list,
				 struct list_head *head)
{
	struct list_head *first = list->next;
	struct list_head *last = list->prev;
	struct list_head *at = head->next;

	first->prev = head;
	head->next = first;

	last->next = at;
	at->prev = last;
}

static inline int list_empty(const struct list_head *head)
{
	return head->next == head;
}

static inline void list_splice(struct list_head *list, struct list_head *head)
{
	if (!list_empty(list))
		__list_splice(list, head);
}

static inline void list_replace(struct list_head *old,
				struct list_head *new)
{
	new->next = old->next;
	new->next->prev = new;
	new->prev = old->prev;
	new->prev->next = new;
}

static inline void list_replace_init(struct list_head *old,
					struct list_head *new)
{
	list_replace(old, new);
	INIT_LIST_HEAD(old);
}

static inline void list_move(struct list_head *list, struct list_head *head)
{
	__list_del(list->prev, list->next);
	list_add(list, head);
}


static inline void list_move_tail(struct list_head *list,
				  struct list_head *head)
{
	__list_del(list->prev, list->next);
	list_add_tail(list, head);
}
#define list_entry(ptr, type, member) 
    container_of(ptr, type, member)

#define list_first_entry(ptr, type, member) 
    list_entry((ptr)->next, type, member)

#define list_for_each(pos, head) 
    for (pos = (head)->next; pos != (head); pos = pos->next)

#define list_for_each_entry(pos, head, member)      
	for (pos = list_entry((head)->next, typeof(*pos), member);	
	     &pos->member != (head); 	
	     pos = list_entry(pos->member.next, typeof(*pos), member))

#define list_for_each_prev(pos, head) 
	for (pos = (head)->prev;  pos != (head); 
 	pos = pos->prev)

**  养成习惯,先赞后看!如果觉得写的不错,欢迎关注,点赞,收藏,转发,谢谢!**
**  以上代码均为测试后的代码。如有错误和不妥的地方,欢迎指出。**

转载请注明:文章转载自 www.mshxw.com
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号