Home
last modified time | relevance | path

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

/linux-3.3/net/ipv4/
Dtcp_output.c80 tp->packets_out += tcp_skb_pcount(skb); in tcp_event_new_data_sent()
809 BUG_ON(!skb || !tcp_skb_pcount(skb)); in tcp_transmit_skb()
895 tcp_event_ack_sent(sk, tcp_skb_pcount(skb)); in tcp_transmit_skb()
902 tcp_skb_pcount(skb)); in tcp_transmit_skb()
1064 old_factor = tcp_skb_pcount(skb); in tcp_fragment()
1074 int diff = old_factor - tcp_skb_pcount(skb) - in tcp_fragment()
1075 tcp_skb_pcount(buff); in tcp_fragment()
1145 if (tcp_skb_pcount(skb) > 1) in tcp_trim_head()
1349 tcp_skb_pcount(skb) == 1) in tcp_cwnd_test()
1367 int tso_segs = tcp_skb_pcount(skb); in tcp_init_tso_segs()
[all …]
Dtcp_input.c1005 tp->lost_out += tcp_skb_pcount(skb); in tcp_skb_mark_lost()
1016 tp->lost_out += tcp_skb_pcount(skb); in tcp_skb_mark_lost_uncond_verify()
1201 tp->retrans_out -= tcp_skb_pcount(skb); in tcp_mark_lost_retrans()
1208 cnt += tcp_skb_pcount(skb); in tcp_mark_lost_retrans()
1275 if (tcp_skb_pcount(skb) > 1 && !in_sack && in tcp_match_skb_to_sack()
1445 BUG_ON(!tcp_skb_pcount(skb)); in tcp_shifted_skb()
1458 tp->lost_cnt_hint -= tcp_skb_pcount(prev); in tcp_shifted_skb()
1478 return tcp_skb_pcount(skb) == 1 ? skb->len : tcp_skb_mss(skb); in tcp_skb_seglen()
1528 pcount = tcp_skb_pcount(skb); in tcp_shift_skb_data()
1543 if (tcp_skb_pcount(skb) <= 1) in tcp_shift_skb_data()
[all …]
/linux-3.3/include/net/
Dtcp.h665 static inline int tcp_skb_pcount(const struct sk_buff *skb) in tcp_skb_pcount() function