Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

Name:__skb_queue_head - queue a buffer at the list head*@list: list to use*@newsk: buffer to queue* Queue a buffer at the start of a list. This function takes no locks* and you must therefore hold required locks before calling it.

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

Type:void

Parameter:

TypeParameterName
struct sk_buff_head *list
struct sk_buff *newsk
1992  __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