| 192 | } |
| 193 | |
| 194 | static inline void |
| 195 | list_del_init(struct list_head *node) |
| 196 | { |
| 197 | list_del(node); |
| 198 | INIT_LIST_HEAD(node); |
| 199 | } |
| 200 | |
| 201 | #define list_entry(PTR, TYPE, FIELD) container_of(PTR, TYPE, FIELD) |
| 202 | #define list_first_entry(PTR, TYPE, FIELD) \ |
no test coverage detected