Lines Matching refs:FRAG_CB
74 #define FRAG_CB(skb) ((struct ipfrag_skb_cb *)((skb)->cb)) macro
80 FRAG_CB(skb)->next_frag = NULL; in ip4_frag_init_run()
81 FRAG_CB(skb)->frag_run_len = skb->len; in ip4_frag_init_run()
89 FRAG_CB(skb)->next_frag = NULL; in ip4_frag_append_to_last_run()
91 FRAG_CB(q->last_run_head)->frag_run_len += skb->len; in ip4_frag_append_to_last_run()
92 FRAG_CB(q->fragments_tail)->next_frag = skb; in ip4_frag_append_to_last_run()
222 if (FRAG_CB(head)->next_frag) in ip_expire()
224 &FRAG_CB(head)->next_frag->rbnode, in ip_expire()
450 FRAG_CB(skb1)->frag_run_len) in ip_frag_queue()
531 FRAG_CB(fp)->next_frag = FRAG_CB(skb)->next_frag; in ip_frag_reasm()
533 FRAG_CB(prev_tail)->next_frag = fp; in ip_frag_reasm()
540 FRAG_CB(skb)->next_frag = FRAG_CB(head)->next_frag; in ip_frag_reasm()
589 fp = FRAG_CB(head)->next_frag; in ip_frag_reasm()
610 fp = FRAG_CB(fp)->next_frag; in ip_frag_reasm()
748 struct sk_buff *next = FRAG_CB(skb)->next_frag; in inet_frag_rbtree_purge()