linux内核计算list的长度,Linux内核通用链表 linux/list.h阅读

#ifndef _LINUX_LIST_H

#define _LINUX_LIST_H   //宏定义,不做过多解释,就是检查是否包含了linux/list.h

#ifdef __KERNEL__

#include

#include

#include

/*

* These are non-NULL pointers that will result in page faults

* under normal circumstances, used to verify that nobody uses

* non-initialized list entries.

*/

这些非空的指针会导致页错误,在正常环境下,用来验证无人使用为初始化的链表节点,入口.也有解释说能引起中断,或者关于这个地址的处理内核处理的很简单,要么打印日志信息报错,要么直接不处理.

#define LIST_POISON1 ((void *) 0x00100100)

#define LIST_POISON2 ((void *) 0x00200200)

/*

* Simple doubly linked list implementation.

*

* Some of the internal functions ("__xxx") are useful when

* manipulating whole lists rather than single entries, as

* sometimes we already know the next/prev entries and we can

* generate better code by using them directly rather than

* using the generic single-entry routines.

*/

entry似乎应该翻译成表或者节点。

简单的双向链表实现:一些内部函数在熟练操作整个链表比单个入口更有用,当我们已经知道next/prev入口,通过使用直接它们比使用一般的单入口程序产生更好的代码。

struct list_head {

struct list_head *next, *prev;

};

#define LIST_HEAD_INIT(name) { &(name), &(name) }

#define LIST_HEAD(name) \

struct list_head name = LIST_HEAD_INIT(name)

如果一开始没有看懂LIST_HEAD_INIT宏定义的话,上面这个应该可以让人豁然开朗,初始化一个name链表,让头和尾都指向自己。

#define INIT_LIST_HEAD(ptr) do { \

(ptr)->next = (ptr); (ptr)->prev = (ptr); \

} while (0)

/*

* Insert a new entry between two known consecutive entries.

*

* This is only for internal list manipulation where we know

* the prev/next entries already!

*/

在已知的连续节点中间插入一个新的节点

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;

}

/**

* list_add - add a new entry

* @new: new entry to be added

* @head: list head to add it after

*

* Insert a new entry after the specified head.

* This is good for implementing stacks.

*/

在制订head节点之后插入一个新的节点,这个适用于栈

static inline void list_add(struct list_head *new, struct list_head *head)

{

__list_add(new, head, head->next);

}

/**

* list_add_tail - add a new entry

* @new: new entry to be added

* @head: list head to add it before

*

* Insert a new entry before the specified head.

* This is useful for implementing queues.

*/

在指定节点前插入一个新节点,适用于队列

static inline void list_add_tail(struct list_head *new, struct list_head *head)

{

__list_add(new, head->prev, head);

}

/*

* Insert a new entry between two known consecutive entries.

*

* This is only for internal list manipulation where we know

* the prev/next entries already!

*/

此函数仅供内置链表操作,就是只用于此头文件中所有的关于链表操作的函数就是要已知 prev/next 节点

static inline void __list_add_rcu(struct list_head * new,

struct list_head * prev, struct list_head * next)

{

new->next = next;

new->prev = prev;

smp_wmb();

next->prev = new;

prev->next = new;

}

/**

* list_add_rcu - add a new entry to rcu-protected list

* @new: new entry to be added

* @head: list head to add it after

*

* Insert a new entry after the specified head.

* This is good for implementing stacks.

*

* The caller must take whatever precautions are necessary

* (such as holding appropriate locks) to avoid racing

* with another list-mutation primitive, such as list_add_rcu()

* or list_del_rcu(), running on this same list.

* However, it is perfectly legal to run concurrently with

* the _rcu list-traversal primitives, such as

* list_for_each_entry_rcu().

*/

调用必须提供任何的必要的防范措施(比如固定适当的锁)来避免在运行于同一个链表时和另一个原始的链表操作竞争,比如 list_add_rcu() * or list_del_rcu(), 但是和_rcu 原始的链表遍历同时运行是完全合法的。

static inline void list_add_rcu(struct list_head *new, struct list_head *head)

{

__list_add_rcu(new, head, head->next);

}

/**

* list_add_tail_rcu - add a new entry to rcu-protected list

* @new: new entry to be added

* @head: list head to add it before

*

* Insert a new entry before the specified head.

* This is useful for implementing queues.

*

* The caller must take whatever precautions are necessary

* (such as holding appropriate locks) to avoid racing

* with another list-mutation primitive, such as list_add_tail_rcu()

* or list_del_rcu(), running on this same list.

* However, it is perfectly legal to run concurrently with

* the _rcu list-traversal primitives, such as

* list_for_each_entry_rcu().

*/

static inline void list_add_tail_rcu(struct list_head *new,

struct list_head *head)

{

__list_add_rcu(new, head->prev, head);

}

/*

* Delete a list entry by making the prev/next entries

* point to each other.

*

* This is only for internal list manipulation where we know

* the prev/next entries already!

*/

看不懂此函数可以看下面就明白了,删除已知节点,需要知道节点的后继和前趋

static inline void __list_del(struct list_head * prev, struct list_head * next)

{

next->prev = prev;

prev->next = next;

}

/**

* list_del - deletes entry from list.

* @entry: the element to delete from the list.

* Note: list_empty on entry does not return true after this, the entry is

* in an undefined state.

*/

static inline void list_del(struct list_head *entry)

{

__list_del(entry->prev, entry->next);

entry->next = LIST_POISON1;

entry->prev = LIST_POISON2;

}0b1331709591d260c1c78e86d0c51c18.png

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/557797.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

分页插件PageHelper的使用方法

PageHelper是国内非常优秀的一款开源的mybatis分页插件&#xff0c;它支持基本主流与常用的数据库&#xff0c;例如mysql、 oracle、mariaDB、DB2、SQLite、Hsqldb等。 PageHelper的使用方法 第一步、导包&#xff08;或者导入坐标&#xff09; <!-- https://mvnreposito…

linux nginx http cache时间不对,Linux中Nginx设置proxy_cache缓存与取消缓存-linux-操作系统-壹...

本文章来讲述一下关于Linux中Nginx设置proxy_cache缓存与取消缓存实现方法&#xff0c;有需要的朋友可参考。在配置文件的server{}内&#xff0c;添加这么一句即可&#xff1a;代码如下复制代码location ~ .*/.(css|js)$ {add_header Cache-Control no-store;}在nginx.conf里的…

Cookie与Session相关学习笔记

一.会话技术 会话: 为了实现某一个功能, 浏览器和服务器之间可能会产生多次的请求和响应, 从浏览器访问服务器开始, 到最后浏览器关闭, 这期间产生的多次请求和响应就称之为浏览器和服务器之间的一次会话! 如何来保存会话中产生的数据???~request太小了~ServletContext域太…

linux 网络劫持编程,Linux下实现劫持系统调用的总结(上)--代码及实现

Linux内核版本2.6中已经不再导出系统调用符号表了。因此&#xff0c;如果想实现劫持系统调用&#xff0c;就得想办法找到系统调用表的地址。网上应该可以搜到相关的实现。我这里找到了albcamus兄的精华文章&#xff0c;并在内核版本2.6.18.3上实践了其中的代码。这里总结一下。…

分析Spring容器启动流程 Spring初始化

分析Spring容器启动流程 Spring初始化 每当启动Web容器时&#xff08;例如Tomcat&#xff09;&#xff0c;会读取Web应用中的web.xml文件。以下这段代码就是启动Spring容器的关键代码。 ContextLoaderListener 类继承了ContextLoader&#xff0c;实现 了ServletContextListen…

IllegalStateException: No WebApplicationContext found: no Co

严重: Servlet.service() for servlet Persistent Faces Servlet threw exception java.lang.IllegalStateException: No WebApplicationContext found: no ContextLoaderListener registered? at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingF…

linux 喂狗时间,狗狗正确喂食时间表,喂狗最佳时间指南

未满3月龄的狗狗&#xff0c;每天的早、晚餐分别在7&#xff5e;8点与19&#xff5e;20点喂食&#xff0c;期间每隔3&#xff5e;4小时再喂一次。未满6月龄的狗狗&#xff0c;7&#xff5e;8点喂早餐&#xff0c;12&#xff5e;13点喂午餐&#xff0c;19&#xff5e;20点喂晚餐…

帮帮忙—ssm框架中,简单自定义标签SimpleTagSupport如何注入spirng中的bean

权限太多&#xff0c;想用简单自定义标签来控制&#xff0c;但遇到一个头疼的问题&#xff0c;不能用autowird自动注入spring管理的bean&#xff0c;让人恼火&#xff1b; 经过周折&#xff0c;终于解决问题&#xff0c;与大家一起分享&#xff0c;可能不是最好的方法&#xf…

linux连接svn上代码,代码管理平台介绍、安装svn、客户端上使用svn(linux)、客户端上使用svn(windows)...

代码管理平台介绍代码管理平台介绍--svn版本控制&#xff0c;记录若干文件内容变化&#xff0c;以便未来查阅特定版本修订状况.好比某一个业务&#xff0c;须要不断更新&#xff0c;好比产品经理这周提交了产品新的需求&#xff0c;改动了一些代码&#xff0c;咱们把新的代码上…

linux 文件读取 监控,linux 文件系统的监控

完整性检查是HIDS的重要组成部分之一&#xff0c;linux下做完整性检查的思路有3个1、哈希对比2、签名校验3、inotify方法有2个&#xff1a;A、定期检测&#xff0c;例如通过cron或程序内置计时器B、实时检测&#xff0c;inotify1、2一般和A&#xff0c;3一般和B。用inotify做完…

<load-on-startup>1</load-on-startup>的作用

1)load-on-startup元素标记容器是否在启动的时候就加载这个servlet(实例化并调用其init()方法)。 2)它的值必须是一个整数&#xff0c;表示servlet应该被载入的顺序 3)当值为0或者大于0时&#xff0c;表示容器在应用启动时就加载并初始化这个servlet&#xff1b; 4)当值小于0或…

Spring初始化:org.springframework.we...ContextLoaderListener的作用

Spring初始化&#xff1a;org.springframework.web.context.ContextLoaderListener的作用 在web.xml种这样配置 <listener><listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener>ContextLoaderList…

mx linux安装方法,MX Linux是什么_MX Linux镜像下载-华为云

简介MX Linux是基于Debian稳定分支的面向桌面的Linux发行&#xff0c;它是antiX及早先的MEPIS Linux社区合作的产物。使用说明MX Linux的仓库地址为&#xff1a;https://repo.huaweicloud.com/mxlinux/MX Linux的镜像地址为&#xff1a;https://repo.huaweicloud.com/mxlinux-c…

Java中Map里put方法的返回值

在java中,Map里的put方法,如果key值不存在,则返回值是null,但是key值如果存在,则会返回原先被替换掉的value值.(当然,map中的key和value都允许是null). Map map new HashMap();Object obj null;obj map.put(null, null);System.out.println(obj); //nullobj map.put(null, …

Linux统一编程接口,restful接口设计规范总结

一、重要概念&#xff1a;REST,即Representational State Transfer的缩写。我对这个词组的翻译是"表现层状态转化"。Resource(资源) &#xff1a;对象的单个实例。 例如&#xff0c;一只动物。它可以是一段文本、一张图片、一首歌曲、一种服务&#xff0c;总之就是一…

重写hashcode和equals方法

一。前言 我们都知道&#xff0c;要比较两个对象是否相等时需要调用对象的equals()方法&#xff0c;即判断对象引用所指向的对象地址是否相等&#xff0c;对象地址相等时&#xff0c;那么与对象相关的对象句柄、对象头、对象实例数据、对象类型数据等也是完全一致的&#xff0…

linux 安装log4j,Log4j 安装

Log4j教程 - Log4j安装Log4j API包是根据Apache软件许可证分发的。最新的log4j版本&#xff0c;包括全源代码&#xff0c;类文件和文档可以在http://logging.apache.org/log4j/找到。我们可以从上面的链接下载apache-log4j-x.x.x.tar.gz或zip文件。支持库我们可以使用log4j将信…

input输入框只读的几种方式

input输入框只读的几种方式 **readonly&#xff1a;**只针对input(text / password)和textarea有效&#xff1b;如果设为true&#xff0c;用户只是不能编辑对应的文本&#xff0c;但是仍然可以聚焦焦点&#xff0c;并且在提交表单的时候&#xff0c;该输入项会作为form的一项提…

linux sql 语句菜鸟,Linux安装mysql

要在centos上安装mysql&#xff0c;这些知识还不是很了解&#xff0c;找了一些资料分享一下1、下载mysql-5.5.3-m3.tar.gz&#xff0c;并且解压.tar -xzvf mysql-5.1.36.tar.gz2、添加mysql组&#xff0c;新建mysql用户groupadd mysqluseradd -g mysql mysql3、进入目录cd mysq…

@Autowired注入为null的几种情况

1.在应用的Filter或Listener中使用了Autowired &#xff0c; 原因&#xff1a;因为Filter和Listener加载顺序优先于spring容器初始化实例&#xff0c;所以使用Autowired肯定为null了~~ 解决&#xff1a;用ApplicationContext根据bean名称&#xff08;注意名称为实现类而不是接…