Lines Matching refs:FRAG_CB

47 #define FRAG_CB(skb)		((struct ipfrag_skb_cb *)((skb)->cb))  macro
52 FRAG_CB(skb)->next_frag = NULL; in fragcb_clear()
53 FRAG_CB(skb)->frag_run_len = skb->len; in fragcb_clear()
62 FRAG_CB(q->last_run_head)->frag_run_len += skb->len; in fragrun_append_to_last()
63 FRAG_CB(q->fragments_tail)->next_frag = skb; in fragrun_append_to_last()
278 struct sk_buff *next = FRAG_CB(skb)->next_frag; in inet_frag_rbtree_purge()
401 else if (FRAG_CB(last)->ip_defrag_offset + last->len < end) { in inet_frag_queue_insert()
404 if (offset < FRAG_CB(last)->ip_defrag_offset + last->len) in inet_frag_queue_insert()
406 if (offset == FRAG_CB(last)->ip_defrag_offset + last->len) in inet_frag_queue_insert()
423 curr_run_end = FRAG_CB(curr)->ip_defrag_offset + in inet_frag_queue_insert()
424 FRAG_CB(curr)->frag_run_len; in inet_frag_queue_insert()
425 if (end <= FRAG_CB(curr)->ip_defrag_offset) in inet_frag_queue_insert()
429 else if (offset >= FRAG_CB(curr)->ip_defrag_offset && in inet_frag_queue_insert()
443 FRAG_CB(skb)->ip_defrag_offset = offset; in inet_frag_queue_insert()
475 FRAG_CB(fp)->next_frag = FRAG_CB(skb)->next_frag; in inet_frag_reasm_prepare()
477 FRAG_CB(parent)->next_frag = fp; in inet_frag_reasm_prepare()
490 FRAG_CB(skb)->next_frag = FRAG_CB(head)->next_frag; in inet_frag_reasm_prepare()
496 WARN_ON(FRAG_CB(head)->ip_defrag_offset != 0); in inet_frag_reasm_prepare()
567 fp = FRAG_CB(head)->next_frag; in inet_frag_reasm_finish()
578 struct sk_buff *next_frag = FRAG_CB(fp)->next_frag; in inet_frag_reasm_finish()
635 skb = FRAG_CB(head)->next_frag; in inet_frag_pull_head()