Name

__skb_queue_after — queue a buffer at the list head

Synopsis

void __skb_queue_after (struct sk_buff_head * list,
 struct sk_buff * prev,
 struct sk_buff * newsk);
 

Arguments

struct sk_buff_head * list

list to use

struct sk_buff * prev

place after this buffer

struct sk_buff * newsk

buffer to queue

Description

Queue a buffer int the middle 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.