| 134 | } |
| 135 | |
| 136 | static inline void |
| 137 | list_del(struct list_head *entry) |
| 138 | { |
| 139 | entry->prev->next = entry->next; |
| 140 | entry->next->prev = entry->prev; |
| 141 | } |
| 142 | |
| 143 | static inline void |
| 144 | __list_splice_between(struct list_head *prev, const struct list_head *list, |
no outgoing calls
no test coverage detected