Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:include\linux\list.h Create Date:2022-07-28 05:34:29
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:list_bulk_move_tail - move a subsection of a list to its tail*@head: the head that will follow our entry*@first: first entry to move*@last: last entry to move, can be the same as first* Move all entries between @first and including @last before @head.

Proto:static inline void list_bulk_move_tail(struct list_head *head, struct list_head *first, struct list_head *last)

Type:void

Parameter:

TypeParameterName
struct list_head *head
struct list_head *first
struct list_head *last
230  next = next
231  prev = prev
233  next = first
234  prev = prev
236  next = head
237  prev = last
Caller
NameDescribe
list_test_list_bulk_move_tail