container_of宏

一. 作用struct XXX_dev
{
 cdev cdev;
}

struct XXX_dev *dev; /* device information */ 

*dev             = container_of(inode->i_cdev, struct XXX_dev, cdev);
结构体对象                                 域指针              结构体      域

已知一个结构体 含有某个域 且知道该域的指针

可知该域指针所属的结构体对象

二.用法例子
filp->private_data = dev; /* for other methods */

struct test
{
 char a;
 char b;
 char c;
}

struct test tttt;
*ptttt指针指向tttt,*pc指针指向tttt.c,*pa指针指向tttt.a,*pb指针指向tttt.b

这里pa pb pc 是已知的
struct test *ptttt= container_of(pa,struct test,a);
struct test *ptttt= container_of(pb,struct test,b);
struct test *ptttt= container_of(pc,struct test,c);
根据一个结构体变量中的一个域成员变量的指针来获取指向整个结构体变量的指针

 

三.原理

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

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

获取结构体对象指针也即是获取结构体对象的第一个成员的指针
如下图:我们只需知道member0的指针即可,

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值