1__SKB_QUEUE_AFTER(9) Linux Networking __SKB_QUEUE_AFTER(9)
2
3
4
6 __skb_queue_after - queue a buffer at the list head
7
9 void __skb_queue_after(struct sk_buff_head * list,
10 struct sk_buff * prev, struct sk_buff * newsk);
11
13 list
14 list to use
15
16 prev
17 place after this buffer
18
19 newsk
20 buffer to queue
21
23 Queue a buffer int the middle of a list. This function takes no locks
24 and you must therefore hold required locks before calling it.
25
26 A buffer cannot be placed on two lists at the same time.
27
29Kernel Hackers Manual 2.6. June 2019 __SKB_QUEUE_AFTER(9)