Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

Name:__skb_queue_after - queue a buffer at the list head*@list: list to use*@prev: place after this buffer*@newsk: buffer to queue* Queue a buffer int the middle of a list. This function takes no locks

Proto:static inline void __skb_queue_after(struct sk_buff_head *list, struct sk_buff *prev, struct sk_buff *newsk)

Type:void

Parameter:

TypeParameterName
struct sk_buff_head *list
struct sk_buff *prev
struct sk_buff *newsk
1966  Insert an sk_buff on a list.* The "__skb_xxxx()" functions are the non-atomic ones that* can only be called with interrupts disabled.