container_of是用于在數(shù)據(jù)結(jié)構(gòu)中獲取包含該數(shù)據(jù)結(jié)構(gòu)的容器的指針的宏。在Linux內(nèi)核中,container_of通常用于實現(xiàn)內(nèi)核中的鏈表、隊列或其他數(shù)據(jù)結(jié)構(gòu)。
通常情況下,內(nèi)核中的數(shù)據(jù)結(jié)構(gòu)會在其內(nèi)部包含一個指向容器的指針。當我們需要從數(shù)據(jù)結(jié)構(gòu)中獲取容器的指針時,可以使用container_of宏。
例如,假設有一個鏈表結(jié)構(gòu),每個節(jié)點包含一個數(shù)據(jù)字段和一個指向鏈表的下一個節(jié)點的指針。如果我們有一個節(jié)點的指針,我們可以使用container_of宏來獲取節(jié)點所在的鏈表的指針。
這是container_of宏的示例用法:
struct list_node {
int data;
struct list_head next;
};
struct list_head {
struct list_node *node;
};
void process_list_node(struct list_node *node) {
struct list_head *head = container_of(node, struct list_head, node);
// 使用head指針進行鏈表操作
}
上述代碼中,process_list_node函數(shù)接受一個list_node節(jié)點的指針,并使用container_of宏獲取包含該節(jié)點的list_head結(jié)構(gòu)體的指針。這樣,我們就可以使用head指針對鏈表進行操作。
通過使用container_of宏,我們可以方便地在內(nèi)核中的數(shù)據(jù)結(jié)構(gòu)中獲取容器的指針,從而實現(xiàn)對數(shù)據(jù)結(jié)構(gòu)的更加靈活的操作。