1. NAME

skb_queue_prev - return the prev packet in the queue

2. SYNOPSIS

struct sk_buff * skb_queue_prev(const struct sk_buff_head *  list , const struct sk_buff *  skb );

3. ARGUMENTS

list
    queue head

skb
    current buffer

4. DESCRIPTION

Return the prev packet in list before skb. It is only valid to call this if skb_queue_is_first evaluates to false.

5. COPYRIGHT