Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/net/wireless/mwifiex/
Dutil.c33 {"wmm_ac_vo", item_size(packets_out[WMM_AC_VO]),
34 item_addr(packets_out[WMM_AC_VO]), 1},
35 {"wmm_ac_vi", item_size(packets_out[WMM_AC_VI]),
36 item_addr(packets_out[WMM_AC_VI]), 1},
37 {"wmm_ac_be", item_size(packets_out[WMM_AC_BE]),
38 item_addr(packets_out[WMM_AC_BE]), 1},
39 {"wmm_ac_bk", item_size(packets_out[WMM_AC_BK]),
40 item_addr(packets_out[WMM_AC_BK]), 1},
189 memcpy(info->packets_out, in mwifiex_get_debug_info()
190 priv->wmm.packets_out, in mwifiex_get_debug_info()
[all …]
Dioctl.h195 u32 packets_out[MAX_NUM_TID]; member
Dwmm.c1181 priv->wmm.packets_out[tid]++; in mwifiex_rotate_priolists()
Dmain.h299 u32 packets_out[MAX_NUM_TID]; member
/linux-4.4.14/net/ipv4/
Dtcp_timer.c74 (!tp->snd_wnd && !tp->packets_out)) in tcp_out_of_resources()
291 if (tp->packets_out || !tcp_send_head(sk)) { in tcp_probe_timer()
377 if (!tp->packets_out) in tcp_retransmit_timer()
613 if (tp->packets_out || tcp_send_head(sk)) in tcp_keepalive_timer()
Dtcp_output.c76 unsigned int prior_packets = tp->packets_out; in tcp_event_new_data_sent()
81 tp->packets_out += tcp_skb_pcount(skb); in tcp_event_new_data_sent()
1092 tp->packets_out -= decr; in tcp_adjust_pcount()
1472 tp->packets_out > tp->max_packets_out) { in tcp_cwnd_validate()
1473 tp->max_packets_out = tp->packets_out; in tcp_cwnd_validate()
1484 if (tp->packets_out > tp->snd_cwnd_used) in tcp_cwnd_validate()
1485 tp->snd_cwnd_used = tp->packets_out; in tcp_cwnd_validate()
1527 (!nonagle && tp->packets_out && tcp_minshall_check(tp))); in tcp_nagle_check()
2143 return !tp->packets_out && tcp_send_head(sk); in tcp_write_xmit()
2173 if (sysctl_tcp_early_retrans < 3 || !tp->packets_out || in tcp_schedule_loss_probe()
[all …]
Dtcp_input.c781 rate *= max(tp->snd_cwnd, tp->packets_out); in tcp_update_pacing_rate()
1607 state->reord = tp->packets_out; in tcp_sacktag_write_queue()
1627 if (!tp->packets_out) in tcp_sacktag_write_queue()
1799 holes = min(holes, tp->packets_out); in tcp_limit_reno_sacked()
1801 if ((tp->sacked_out + holes) > tp->packets_out) { in tcp_limit_reno_sacked()
1802 tp->sacked_out = tp->packets_out - holes; in tcp_limit_reno_sacked()
1816 tcp_update_reordering(sk, tp->packets_out + addend, 0); in tcp_check_reno_reordering()
2111 __u32 packets_out; in tcp_time_to_recover() local
2124 packets_out = tp->packets_out; in tcp_time_to_recover()
2125 if (packets_out <= tp->reordering && in tcp_time_to_recover()
[all …]
Dtcp_minisocks.c476 newtp->packets_out = 0; in tcp_create_openreq_child()
Dtcp.c2247 tp->packets_out = 0; in tcp_disconnect()
2681 info->tcpi_unacked = tp->packets_out; in tcp_get_info()
/linux-4.4.14/include/net/
Dtcp.h999 return tp->packets_out - tcp_left_out(tp) + tp->retrans_out; in tcp_packets_in_flight()
1037 #define tcp_verify_left_out(tp) WARN_ON(tcp_left_out(tp) > tp->packets_out)
1113 if (!tcp_sk(sk)->packets_out && !inet_csk(sk)->icsk_pending) in tcp_check_probe_timer()
1187 if (!sysctl_tcp_slow_start_after_idle || tp->packets_out) in tcp_slow_start_after_idle_check()
1626 return tp->packets_out < 4 && !tcp_in_initial_slowstart(tp); in tcp_stream_is_thin()
/linux-4.4.14/include/linux/
Dtcp.h230 u32 packets_out; /* Packets which are "in flight" */ member