Чят, смотри. В прыщеведре есть волшебная макра, по адресу члена структуры, ее типу и названию мембера возвращающая адрес самой структуры:
/
* 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) );})
Я написал то же самое так:
#define container_of(ptr, type, member) \
(type *)((char *)ptr - (char *)&(((type *)0)->member))
И вроде бы УМВР. Вопрос: зачем в прыщеведре лишние костыли?