Häufig im Linux-Kernel zu sehen, 35, 0.05);Schriftfamilie: „Operator Mono“, Consolas, Monaco, Menlo, Monospace;Wortumbruch: Break-All;Farbe: RGB(239, 112, 96); ">container_of Abbildung, wird auch häufig beim Schreiben tatsächlicher Treiber verwendet. 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 Prinzip
Funktion
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
ptr
: Zeiger auf Strukturelementvariablentype
: structure typemember
: der Name der StrukturmitgliedsvariablenMember of type
< Codestil ="Schriftgröße: 14px;Padding: 2px 4px;Randradius: 4px;Rand rechts: 2px;Rand links: 2px;Hintergrundfarbe: rgba(27, 31, 35, 0,05);font- Familie: „Operator Mono“, Consolas, Monaco, Menlo, monospace;word-break: break-all;color: rgb(239, 112, 96);“>Mitglieds Adresse ptr, Struktur lösen< code style= "font-size: 14px;padding: 2px 4px;border-radius: 4px;margin-right: 2px;margin-left: 2px;background-color: rgba(27, 31, 35, 0.05);font- Familie: „Operator Mono“, Consolas, Monaco, Menlo, monospace;word-break: break-all;color: rgb(239, 112, 96);“>types Startadresse 🎜. 🎜计算公式为:ptr
-size
(size为member的大小)type
的起始地址 = ptr
-size
(size为member的大小)
以一幅图说明ptr
、type
、member
的关系:
container_of
的妙处就在于以0
作为成员变量member
的基址。
其中定义了一个中间变量__mptr
,"__
"代表内部使用,“m
”代表middle
type
、member
的关系:🎜container_of
的妙处就在于🎜以0
作为成员变量member
的基址。🎜🎜其中定义了一个中间变量__mptr
,"__
"代表内部使用,“m
”代表#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
Nach dem Login kopierenNach dem Login kopieren
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
。
Das obige ist der detaillierte Inhalt vonGrundlagen des Linux-Kernels – Container_of-Prinzip und praktische Anwendung. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!