container_of(ptr, type, member)

指针ptr指向结构体type中的成员member;通过指针ptr,返回结构体type的起始地址



container_of 是linux常用的宏,这是我看过最简单的宏解释,分享一下。

container_of(ptr, type, member)_第1张图片

你可能感兴趣的:(container_of(ptr, type, member))