* td_list_move - delete from one list and add as another's head * @list: the entry to move * @head: the head that will precede our entry */
| 272 | * @head: the head that will precede our entry |
| 273 | */ |
| 274 | static inline void td_list_move(struct td_list_head *list, struct td_list_head *head) |
| 275 | { |
| 276 | __td_list_del(list->prev, list->next); |
| 277 | td_list_add(list, head); |
| 278 | } |
| 279 | |
| 280 | /** |
| 281 | * td_list_move_tail - delete from one list and add as another's tail |
nothing calls this directly
no test coverage detected