Home
last modified time | relevance | path

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

/linux-2.6.39/net/ipv4/
Dtcp_timer.c88 (!tp->snd_wnd && !tp->packets_out)) in tcp_out_of_resources()
277 if (tp->packets_out || !tcp_send_head(sk)) { in tcp_probe_timer()
325 if (!tp->packets_out) in tcp_retransmit_timer()
558 if (tp->packets_out || tcp_send_head(sk)) in tcp_keepalive_timer()
Dtcp_output.c71 unsigned int prior_packets = tp->packets_out; in tcp_event_new_data_sent()
80 tp->packets_out += tcp_skb_pcount(skb); in tcp_event_new_data_sent()
163 (!tp->packets_out && (s32)(now - tp->lsndtime) > icsk->icsk_rto)) in tcp_event_data_sent()
969 tp->packets_out -= decr; in tcp_adjust_pcount()
1287 if (tp->packets_out >= tp->snd_cwnd) { in tcp_cwnd_validate()
1293 if (tp->packets_out > tp->snd_cwnd_used) in tcp_cwnd_validate()
1294 tp->snd_cwnd_used = tp->packets_out; in tcp_cwnd_validate()
1390 (!nonagle && tp->packets_out && tcp_minshall_check(tp))); in tcp_nagle_check()
1809 return !tp->packets_out && tcp_send_head(sk); in tcp_write_xmit()
2224 if (!tp->packets_out) in tcp_xmit_retransmit_queue()
[all …]
Dtcp_input.c1729 state.reord = tp->packets_out; in tcp_sacktag_write_queue()
1749 if (!tp->packets_out) in tcp_sacktag_write_queue()
1935 holes = min(holes, tp->packets_out); in tcp_limit_reno_sacked()
1937 if ((tp->sacked_out + holes) > tp->packets_out) { in tcp_limit_reno_sacked()
1938 tp->sacked_out = tp->packets_out - holes; in tcp_limit_reno_sacked()
1952 tcp_update_reordering(sk, tp->packets_out + addend, 0); in tcp_check_reno_reordering()
2314 return tp->packets_out && in tcp_head_timedout()
2414 __u32 packets_out; in tcp_time_to_recover() local
2437 packets_out = tp->packets_out; in tcp_time_to_recover()
2438 if (packets_out <= tp->reordering && in tcp_time_to_recover()
[all …]
Dtcp_minisocks.c478 newtp->packets_out = 0; in tcp_create_openreq_child()
Dtcp.c2094 tp->packets_out = 0; in tcp_disconnect()
2469 info->tcpi_unacked = tp->packets_out; in tcp_get_info()
/linux-2.6.39/include/net/
Dtcp.h777 return tp->packets_out - tcp_left_out(tp) + tp->retrans_out; in tcp_packets_in_flight()
803 #define tcp_verify_left_out(tp) WARN_ON(tcp_left_out(tp) > tp->packets_out)
838 if (!tp->packets_out && !icsk->icsk_pending) in tcp_check_probe_timer()
1363 return tp->packets_out < 4 && !tcp_in_initial_slowstart(tp); in tcp_stream_is_thin()
/linux-2.6.39/include/linux/
Dtcp.h358 u32 packets_out; /* Packets which are "in flight" */ member