Name
__skb_queue_tail -- queue a buffer at the list tail
Synopsis
void __skb_queue_tail
(struct sk_buff_head * list, struct sk_buff * newsk);
Arguments
- list
list to use
- newsk
buffer to queue
Description
Queue a buffer at the end of a list. This function takes no locks
and you must therefore hold required locks before calling it.
A buffer cannot be placed on two lists at the same time.