skb_queue_tail

Autres langues

Langue: en

Version: June 2009 (debian - 07/07/09)

Section: 9 (Appels noyau Linux)

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 tail of the list. This function takes the list lock and can be used safely with other locking sk_buff functions safely.

A buffer cannot be placed on two lists at the same time.