| 64 | #define LIST_HEAD_INIT(name) { .prev = &(name), .next = &(name) } |
| 65 | |
| 66 | static inline void |
| 67 | INIT_LIST_HEAD(struct list_head *head) |
| 68 | { |
| 69 | head->prev = head; |
| 70 | head->next = head; |
| 71 | } |
| 72 | |
| 73 | static inline struct list_head * |
| 74 | list_first(const struct list_head *head) |
no outgoing calls