| 122 | } |
| 123 | |
| 124 | static inline void |
| 125 | list_add(struct list_head *node, struct list_head *head) |
| 126 | { |
| 127 | __list_add_between(head, node, head->next); |
| 128 | } |
| 129 | |
| 130 | static inline void |
| 131 | list_add_tail(struct list_head *node, struct list_head *head) |
no test coverage detected