1__SKB_QUEUE_HEAD_INI(9) Linux Networking __SKB_QUEUE_HEAD_INI(9)
2
3
4
6 __skb_queue_head_init - initialize non-spinlock portions of
7 sk_buff_head
8
10 void __skb_queue_head_init(struct sk_buff_head * list);
11
13 list
14 queue to initialize
15
17 This initializes only the list and queue length aspects of an
18 sk_buff_head object. This allows to initialize the list aspects of an
19 sk_buff_head without reinitializing things like the spinlock. It can
20 also be used for on-stack sk_buff_head objects where the spinlock is
21 known to not be used.
22
24Kernel Hackers Manual 2.6. June 2019 __SKB_QUEUE_HEAD_INI(9)