博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
container_of()宏
阅读量:5035 次
发布时间:2019-06-12

本文共 1709 字,大约阅读时间需要 5 分钟。

指针ptr指向结构体type中的成员member;通过指针ptr,返回结构体type的起始地址
          type
      |----------|
      |          |
      |          |
      |----------|
ptr-->| member --|
      |----------|
      |          |
      |          |
      |----------|
/**
* container_of - cast a member of a structure out to the containing structure
* @ptr:    the pointer to the member.
* @type:   the type of the container struct this is embedded in.
* @member: the name of the member within the struct.
* */
#define container_of(ptr, type, member) ({                    /       
        const typeof( ((type *)0)->member ) *__mptr = (ptr); -
/
        (type *)( (char *)__mptr - offsetof(type,member) );})
--------------------------------------------------
d = usb_device->dev.driver
container_of(d, struct usb_device_driver, drvwrap.driver)
     struct usb_device
|----------------------------|
|                            |
|                            |
|----------------------------|
|                            | struct device
|struct device_driver *driver|--+
|                            | -|
|----------------------------|
-
|
|                            |
-
|
|                            |
-
|
|----------------------------|
-
|
                                |
+-------------------------------+
|
|    struct usb_device_driver
|
--
|---------------------------|
|
--
|                           |
|
--
|                           |
|
--
|---------------------------|
+-->|struct device_driver driver| struct usbdrv_wrap drvwrap
    |int             for_devices|
    |---------------------------|
    |                           |
    |---------------------------|

 

 

--------------------------------------------
container_of宏,它的功能是得到包含某个结构成员的结构的指针:
 
其实现如下:
 
#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) );})
 
    分析可知__mptr指向的是一个type结构里typeof(((type *)0)->member)类型member成员的指针,offsetof(type,member)是这个成员在结构中的偏移,单位是字节,所以为了计算type结构的起始地址,__mptr减去它自己的偏移。
 

转载于:https://www.cnblogs.com/armlinux/archive/2011/01/19/2396859.html

你可能感兴趣的文章
Android实践项目汇报总结(下)
查看>>
char[] 转换为LPWSTR
查看>>
datatable.rows.indexof(dr)返回的是啥?
查看>>
RabbitMq笔记()
查看>>
Java并发总结-全景图
查看>>
js中cookie的使用详细分析
查看>>
linux系统日常管理
查看>>
python练习——moudule02——员工信息增删改查
查看>>
grafana零散模块点记录(share,setting,datasourse)
查看>>
Android 实现两个list分别出现(在某一时刻只出现一个控件)
查看>>
python小爬虫【1】
查看>>
如何使 WebAPI 自动生成漂亮又实用在线API文档
查看>>
对libpq中运用 select()函数的理解
查看>>
Js制作点击输入框时默认文字消失的效果
查看>>
jquery+ashx checkbox 单选判断是否true 和 false 传值操作
查看>>
英语与工作
查看>>
django_进阶
查看>>
php学习笔记--类型转换
查看>>
Devexpress MVC GridView / CardView (持续更新)
查看>>
第八周作业
查看>>