Linux内核链表基本使用

Linux Kernel链表的基本使用,示例程序代码如下,请参考

my_list.h

#ifndef __MY_LIST_H__
#define __MY_LIST_H__

struct list_head {
    struct list_head *prev;
    struct list_head *next;
};

#define INIT_LIST_HEAD(ptr) do { \
    (ptr)->next = (ptr); \
    (ptr)->prev = (ptr); \
} while(0)

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;
}

static inline void list_add(struct list_head *new, struct list_head *head)
{
    __list_add(new, head, head->next);
}

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)
{
    next->prev = prev;
    prev->next = next;
}

#define LIST_POISON1  ((void *) 0x0)
#define LIST_POISON2  ((void *) 0x0)

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 int list_empty(const struct list_head *head)
{
    return head->next == head;
}

#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)

#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_for_each(pos, head) \
    for (pos = (head)->next; pos != (head); pos = pos->next)

#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);    \
         &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))

#endif

my_list.c

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

#include "my_list.h"

typedef struct Student {
    struct list_head list;

    unsigned int id;
    char name[32];
    unsigned int score;
} T_Student;

struct list_head g_stu_list;

int main(int argc, char * argv[])
{
    char tmp[32] = {0};
    
    INIT_LIST_HEAD(&g_stu_list);

    int i = 0;
    for(i = 1; i <= 5; i++)
    {
        T_Student *pstu = NULL;
        pstu = (T_Student *)malloc(sizeof(T_Student));

        memset(pstu, 0, sizeof(T_Student));
        pstu->id = i;
        memset(tmp, 0, sizeof(tmp));
        snprintf(tmp, sizeof(tmp) - 1, "mt-0%d", i);
        strcpy(pstu->name, tmp);
        pstu->score = 90+i;
        printf("i: %d, id: %d, name: %s, score: %d, &list = %p\n", i, pstu->id, pstu->name, pstu->score, &pstu->list);

        list_add(&pstu->list, &g_stu_list);
    }

    printf("........................list_for_each start....................\n");
    struct list_head *pos = NULL, *temp = NULL;
    T_Student *pstu = NULL, *pstuTemp = NULL;
    list_for_each(pos, &g_stu_list)
    {
        pstu = list_entry(pos, T_Student, list);
        printf("id: %d---name: %s---score: %d\n", pstu->id, pstu->name, pstu->score);
    }
    printf("........................list_for_each end....................\n");

    printf("........................list_for_each_safe start....................\n");
    list_for_each_safe(pos, temp, &g_stu_list)
    {
        pstu = list_entry(pos, T_Student, list);
        printf("id: %d---name: %s---score: %d\n", pstu->id, pstu->name, pstu->score);

    }
    printf("........................list_for_each_safe end....................\n");

    printf("........................list_for_each_entry start....................\n");
    list_for_each_entry(pstu, &g_stu_list, list)
    {
        printf(">>>>id: %d---name: %s---score: %d\n", pstu->id, pstu->name, pstu->score);
    }
    printf("........................list_for_each_entry end....................\n");

    printf("........................list_for_each_entry_safe start....................\n");
    list_for_each_entry_safe(pstu, pstuTemp, &g_stu_list, list)
    {
        printf(">>>>id: %d---name: %s---score: %d\n", pstu->id, pstu->name, pstu->score);
    }
    printf("........................list_for_each_entry_safe end....................\n");

    printf("........................list_for_each_safe delete node start....................\n");
    //list_for_each(pos, &g_stu_list) //list_for_each遍历时若删除了pos指向的当前元素,则会导致pos节点的prev和next指针从链表断开,无法继续遍历,
    list_for_each_safe(pos, temp, &g_stu_list)
    {
        pstu = list_entry(pos, T_Student, list);
        printf("id: %d---name: %s---score: %d\n", pstu->id, pstu->name, pstu->score);
        if(pstu->id == 4) //delete node
        {
            list_del(&pstu->list);
        }
    }
    printf("........................list_for_each_safe delete and print list....................\n");
    list_for_each_safe(pos, temp, &g_stu_list)
    {
        pstu = list_entry(pos, T_Student, list);
        printf("id: %d---name: %s---score: %d\n", pstu->id, pstu->name, pstu->score);
    }
    printf("........................list_for_each_safe delete node end....................\n");
    return 0;
}

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值