| 37 | struct list_head name = LIST_HEAD_INIT(name) |
| 38 | |
| 39 | static inline void INIT_LIST_HEAD(struct list_head *list) |
| 40 | { |
| 41 | list->next = list; |
| 42 | list->prev = list; |
| 43 | } |
| 44 | |
| 45 | /* |
| 46 | * Insert a new entry between two known consecutive entries. |
no outgoing calls
no test coverage detected