| 112 | } |
| 113 | |
| 114 | static inline void |
| 115 | __list_add_between(struct list_head *prev, struct list_head *node, |
| 116 | struct list_head *next) |
| 117 | { |
| 118 | prev->next = node; |
| 119 | node->prev = prev; |
| 120 | node->next = next; |
| 121 | next->prev = node; |
| 122 | } |
| 123 | |
| 124 | static inline void |
| 125 | list_add(struct list_head *node, struct list_head *head) |
no outgoing calls
no test coverage detected