* td_list_move_tail - delete from one list and add as another's tail * @list: the entry to move * @head: the head that will follow our entry */
| 283 | * @head: the head that will follow our entry |
| 284 | */ |
| 285 | static inline void td_list_move_tail(struct td_list_head *list, |
| 286 | struct td_list_head *head) |
| 287 | { |
| 288 | __td_list_del(list->prev, list->next); |
| 289 | td_list_add_tail(list, head); |
| 290 | } |
| 291 | #endif |
| 292 | |
| 293 | /** |
nothing calls this directly
no test coverage detected