Linux 커널에서 자주 볼 수 있는 , 35, 0.05);font-family: "Operator Mono", Consolas, Monaco, Menlo, monospace;word-break: break-all;color: rgb(239, 112, 96); ">container_of 그림으로 실제 드라이버 작성에도 널리 사용됩니다. container_of
的身影,它在实际驱动的编写中也是广泛应用。
作用:通过结构体的某个成员变量地址找到该结构体的首地址。
定义如下:
/** * 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) );})
ptr
:结构体成员变量的指针type
:结构体类型member
:结构体成员变量的名字换句话说,叫:已知结构体type
的成员member
的地址ptr,求解结构体type
container_of 원칙
기능
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
ptr
: 구조체 멤버 변수에 대한 포인터type
: 구조 유형member
: 구조체 멤버 변수의 이름유형 멤버
구성원의 주소 ptr, 구조 풀기입력의 시작 주소 🎜. 🎜计算공공式为:유형
적起始地址 = ptr
-size
(size为member的大小)type
的起始地址 = ptr
-size
(size为member的大小)
以一幅图说明ptr
、type
、member
的关系:
container_of
的妙处就在于以0
作为成员变量member
的基址。
其中定义了一个中间变量__mptr
,"__
"代表内部使用,“m
”代表middle
ptr
、유형、member
적关系:🎜container_of
적의 크기: 14px;padding: 2px 4px;border-radius: 4px;margin-right: 2px ;여백 왼쪽: 2px;배경 색상: rgba(27, 31, 35, 0.05); 글꼴 계열: "Operator Mono", Consolas, Monaco, Menlo, monospace;단어 나누기: 모두 중단;색상: rgb (239, 112, 96);">0작성률회원
의 基址。🎜🎜其中定义了一个中间变weight__mptr
,"__
"代表内부체사용,“m
”代表가운데
。🎜#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
typeof( ((type *)0)->member )
是获取member
的类型,__mptr = (ptr)
判断ptr
与member
是否为同一类型,offsetof
计算成员member
的大小size
。
例如内核的pwm
驱动,通过成员变量chip
,找到结构体bcm2835_pwm
:
struct bcm2835_pwm { struct pwm_chip chip; struct device *dev; void __iomem *base; struct clk *clk; }; static inline struct bcm2835_pwm *to_bcm2835_pwm(struct pwm_chip *chip_ptr) { return container_of(chip_ptr, struct bcm2835_pwm, chip); }
使用container_of
通常都会定义一个函数,并且命名为to_xxx
或者to_find_xxx
,代表要找xxx
这个结构体,传参则传入成员变量指针,另外函数也会声明为inline
。
위 내용은 리눅스 커널의 기초 - 컨테이너의 원리와 실제 적용의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!