内核双向链表list.h中的list_entry

本文解析了内核双向链表list.h中的list_entry定义及其作用。通过详细解释container_of宏的工作原理,帮助读者理解如何从一个指向list_head结构的指针中获取其所属结构体。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

内核双向链表list.h中的list_entry定义:

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

程序注释为:

/**
 * list_entry - get the struct for this entry
 * @ptr:    the &struct list_head pointer.
 * @type:    the type of the struct this is embedded in.
 * @member:    the name of the list_struct within the struct.
 */

刚开始没有理解。

现在明白,注释的意思是从一个实体中得到它的结构体。
#define container_of(ptr, type, member) ({const typeof( ((type *)0)->member ) *__mptr = (ptr); (type *)( (char *)__mptr - offsetof(type,member) );})


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值