函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:include\linux\list.h Create Date:2022-07-27 06:38:25
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称: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.

函数原型:static inline void list_bulk_move_tail(struct list_head *head, struct list_head *first, struct list_head *last)

返回类型:void

参数:

类型参数名称
struct list_head *head
struct list_head *first
struct list_head *last
230  链表后项等于链表后项
231  链表前项等于链表前项
233  链表后项等于first
234  链表前项等于链表前项
236  链表后项等于head
237  链表前项等于last
调用者
名称描述
list_test_list_bulk_move_tail