1. NAME

skb_queue_purge - empty a list

2. SYNOPSIS

void skb_queue_purge(struct sk_buff_head *  list );

3. ARGUMENTS

list
    list to empty

4. DESCRIPTION

Delete all buffers on an sk_buff list. Each buffer is removed from the list and one reference dropped. This function takes the list lock and is atomic with respect to other list locking functions.

5. COPYRIGHT