Linux內核中經常可見 作用:通過結構體的某個成員變量地址找到該結構體的首地址。 定義如下: 登錄后復制 換句話說,叫:已知結構體 計算公式為: 以一幅圖說明 其中定義了一個中間變量 登錄后復制 例如內核的 登錄后復制 使用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
的起始地址。type
的起始地址 = ptr
–size
(size為member的大小)ptr
、type
、member
的關系:
container_of
的妙處就在于以0
作為成員變量member
的基址。__mptr
,"__
"代表內部使用,“m
”代表middle
。#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
。
以上就是Linux內核基礎篇——container_of原理和實際應用的詳細內容,更多請關注www.92cms.cn其它相關文章!