zoukankan      html  css  js  c++  java
  • Linux驱动开发10——内核环形双向链表

    Linux内核环形双向链表本身不实现锁机制,需要驱动本身完成锁机制实现。

    1.1、list_head结构体

    #include <linux/list.h>
    
    struct list_head {
        struct list_head *next;
        struct list_head *prev;
    };
    
    list_head结构体本身只包含next和prev两个节点,实际使用时需要自定义结构体包含list_head结构体,如:
    
    struct user_struct
    {
        struct list_head list;
        int flags;    /* user own data */
    };

    1.2、初始化

    INIT_LIST_HEAD(struct list_head *list_head);
    或者
    LIST_HEAD(struct list_head list_head);

    1.3、操作函数

    #include <linux/list.h>
    
    在链表头添加链表节点
    list_add(struct list_head *new, struct list_head *head);
    
    在链表尾添加链表节点
    list_add_tail(struct list_head *new, struct list_head *head);
    
    删除链表节点
    list_del(struct list_head *entry);
    list_del_init(struct list_head *entry);
    
    移动链表节点
    list_move(struct list_head *entry, struct list_head *head);
    list_move_tail(struct list_head *entry, struct list_head *head);
    
    检查链表是否为空,如果为空,返回非零值
    list_empty(list_move(struct list_head *head);
    
    遍历链表
    list_for_each(struct list_head *cursor, struct list_head *list);
  • 相关阅读:
    C++-蓝桥杯-大臣的旅费[dfs][树的直径]
    C++-蓝桥杯-剪格子-[2013真题][爆搜?]
    微信公众平台运营指导
    ALGO-84 大小写转换
    ALGO-84 矩阵乘法
    ALGO-49 寻找数组中最大值
    ALGO-92 前缀表达式
    ALO-42 送分啦
    ALGO-90 出现次数最多的整数
    【微信】公众号群发相关使用
  • 原文地址:https://www.cnblogs.com/justin-y-lin/p/10694516.html
Copyright © 2011-2022 走看看