| 28 | } |
| 29 | |
| 30 | static inline void list_add(struct list_head *new_node, struct list_head *head) { |
| 31 | __list_add(new_node, head, head->next); |
| 32 | } |
| 33 | |
| 34 | static inline void __list_del(struct list_head *prev, struct list_head *next) { |
| 35 | next->prev = prev; |
no test coverage detected