1SKB_PEEK_NEXT(9) Linux Networking SKB_PEEK_NEXT(9)
2
3
4
6 skb_peek_next - peek skb following the given one from a queue
7
9 struct sk_buff * skb_peek_next(struct sk_buff * skb,
10 const struct sk_buff_head * list_);
11
13 skb
14 skb to start from
15
16 list_
17 list to peek at
18
20 Returns NULL when the end of the list is met or a pointer to the next
21 element. The reference count is not incremented and the reference is
22 therefore volatile. Use with caution.
23
25Kernel Hackers Manual 3.10 June 2019 SKB_PEEK_NEXT(9)