Lines Matching refs:skb1

5005 	struct sk_buff *skb1;  in tcp_data_queue_ofo()  local
5068 skb1 = rb_to_skb(parent); in tcp_data_queue_ofo()
5069 if (before(seq, TCP_SKB_CB(skb1)->seq)) { in tcp_data_queue_ofo()
5073 if (before(seq, TCP_SKB_CB(skb1)->end_seq)) { in tcp_data_queue_ofo()
5074 if (!after(end_seq, TCP_SKB_CB(skb1)->end_seq)) { in tcp_data_queue_ofo()
5084 if (after(seq, TCP_SKB_CB(skb1)->seq)) { in tcp_data_queue_ofo()
5086 tcp_dsack_set(sk, seq, TCP_SKB_CB(skb1)->end_seq); in tcp_data_queue_ofo()
5091 rb_replace_node(&skb1->rbnode, &skb->rbnode, in tcp_data_queue_ofo()
5094 TCP_SKB_CB(skb1)->seq, in tcp_data_queue_ofo()
5095 TCP_SKB_CB(skb1)->end_seq); in tcp_data_queue_ofo()
5098 tcp_drop_reason(sk, skb1, in tcp_data_queue_ofo()
5102 } else if (tcp_ooo_try_coalesce(sk, skb1, in tcp_data_queue_ofo()
5115 while ((skb1 = skb_rb_next(skb)) != NULL) { in tcp_data_queue_ofo()
5116 if (!after(end_seq, TCP_SKB_CB(skb1)->seq)) in tcp_data_queue_ofo()
5118 if (before(end_seq, TCP_SKB_CB(skb1)->end_seq)) { in tcp_data_queue_ofo()
5119 tcp_dsack_extend(sk, TCP_SKB_CB(skb1)->seq, in tcp_data_queue_ofo()
5123 rb_erase(&skb1->rbnode, &tp->out_of_order_queue); in tcp_data_queue_ofo()
5124 tcp_dsack_extend(sk, TCP_SKB_CB(skb1)->seq, in tcp_data_queue_ofo()
5125 TCP_SKB_CB(skb1)->end_seq); in tcp_data_queue_ofo()
5127 tcp_drop_reason(sk, skb1, SKB_DROP_REASON_TCP_OFOMERGE); in tcp_data_queue_ofo()
5130 if (!skb1) in tcp_data_queue_ofo()
5384 struct sk_buff *skb1; in tcp_rbtree_insert() local
5388 skb1 = rb_to_skb(parent); in tcp_rbtree_insert()
5389 if (before(TCP_SKB_CB(skb)->seq, TCP_SKB_CB(skb1)->seq)) in tcp_rbtree_insert()