1SKB_QUEUE_TAIL(9) Linux Networking SKB_QUEUE_TAIL(9)
2
3
4
6 skb_queue_tail - queue a buffer at the list tail
7
9 void skb_queue_tail(struct sk_buff_head * list,
10 struct sk_buff * newsk);
11
13 list
14 list to use
15
16 newsk
17 buffer to queue
18
20 Queue a buffer at the tail of the list. This function takes the list
21 lock and can be used safely with other locking sk_buff functions
22 safely.
23
24 A buffer cannot be placed on two lists at the same time.
25
27Kernel Hackers Manual 2.6. June 2019 SKB_QUEUE_TAIL(9)