Home
last modified time | relevance | path

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

/linux-2.4.37.9/net/ipv6/
Dreassembly.c64 #define FRAG6_CB(skb) ((struct ip6frag_skb_cb*)((skb)->cb)) macro
489 if (FRAG6_CB(next)->offset >= offset) in ip6_frag_queue()
499 int i = (FRAG6_CB(prev)->offset + prev->len) - offset; in ip6_frag_queue()
515 while (next && FRAG6_CB(next)->offset < end) { in ip6_frag_queue()
516 int i = end - FRAG6_CB(next)->offset; /* overlap is 'i' bytes */ in ip6_frag_queue()
524 FRAG6_CB(next)->offset += i; /* next fragment */ in ip6_frag_queue()
547 FRAG6_CB(skb)->offset = offset; in ip6_frag_queue()
599 BUG_TRAP(FRAG6_CB(head)->offset == 0); in ip6_frag_reasm()