linux内核宏container_of如何使用?
时间: 2023-08-10 14:15:50 浏览: 100
在 Linux 内核中,`container_of` 是一个非常常用的宏,它可以通过结构体中某个成员的地址来获取整个结构体变量的地址。
使用方法如下:
```c
#define container_of(ptr, type, member) ({ \
const typeof( ((type *)0)->member ) *__mptr = (ptr); \
(type *)( (char *)__mptr - offsetof(type,member) );})
/* 示例结构体 */
struct student {
char name[20];
int age;
int score;
struct list_head list;
};
/* 示例使用 */
struct student stu;
struct list_head *pos;
/* 假设我们已经有一个指向 list_head 的指针 pos,需要获取整个 student 结构体的地址 */
pos = &stu.list;
struct student *pstu = container_of(pos, struct student, list);
```
这里的 `ptr` 是指向结构体中某个成员的指针,`type` 是结构体的类型,`member` 是结构体中的成员名。
`offsetof` 是另一个宏,用于获取结构体中某个成员相对于结构体起始地址的偏移量。
值得注意的是,`container_of` 宏使用了 GNU 扩展的语法,因此在编译时需要添加 `-std=gnu99` 选项。
阅读全文