| 176 | } |
| 177 | |
| 178 | static inline void |
| 179 | list_move_tail(struct list_head *node, struct list_head *head) |
| 180 | { |
| 181 | list_del(node); |
| 182 | list_add_tail(node, head); |
| 183 | } |
| 184 | |
| 185 | static inline void |
| 186 | list_replace(struct list_head *old, struct list_head *new) |
nothing calls this directly
no test coverage detected