linux内核中的list_for_each_entry函数
通过结构体成员获取结构体地址代码仅作解释,不能直接运行// 结构体 :该结构体里面有一个节点 node,该节点会插入到 一个链表里面struct input_handler { int minor; struct list_head node;};// 链表 struct list_head { struct list_head *next, *prev; }; ...