Name
list_bulk_move_tail —
move a subsection of a list to its tail
Synopsis
void list_bulk_move_tail ( | struct list_head * head, |
| struct list_head * first, |
| struct list_head * last) ; |
Arguments
head
the head that will follow our entry
first
first entry to move
last
last entry to move, can be the same as first
Description
Move all entries between first
and including last
before head
.
All three entries must belong to the same linked list.