Home
last modified time | relevance | path

Searched refs:list_ (Results 1 – 1 of 1) sorted by relevance

/include/linux/
Dskbuff.h985 static inline struct sk_buff *skb_peek(const struct sk_buff_head *list_) in skb_peek() argument
987 struct sk_buff *skb = list_->next; in skb_peek()
989 if (skb == (struct sk_buff *)list_) in skb_peek()
1004 const struct sk_buff_head *list_) in skb_peek_next() argument
1008 if (next == (struct sk_buff *)list_) in skb_peek_next()
1026 static inline struct sk_buff *skb_peek_tail(const struct sk_buff_head *list_) in skb_peek_tail() argument
1028 struct sk_buff *skb = list_->prev; in skb_peek_tail()
1030 if (skb == (struct sk_buff *)list_) in skb_peek_tail()
1042 static inline __u32 skb_queue_len(const struct sk_buff_head *list_) in skb_queue_len() argument
1044 return list_->qlen; in skb_queue_len()