Home
last modified time | relevance | path

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

/linux-4.4.14/net/ipv4/
Dip_fragment.c67 #define FRAG_CB(skb) ((struct ipfrag_skb_cb *)((skb)->cb)) macro
404 if (!prev || FRAG_CB(prev)->offset < offset) { in ip_frag_queue()
410 if (FRAG_CB(next)->offset >= offset) in ip_frag_queue()
421 int i = (FRAG_CB(prev)->offset + prev->len) - offset; in ip_frag_queue()
438 while (next && FRAG_CB(next)->offset < end) { in ip_frag_queue()
439 int i = end - FRAG_CB(next)->offset; /* overlap is 'i' bytes */ in ip_frag_queue()
447 FRAG_CB(next)->offset += i; in ip_frag_queue()
471 FRAG_CB(skb)->offset = offset; in ip_frag_queue()
562 WARN_ON(FRAG_CB(head)->offset != 0); in ip_frag_reasm()