Searched refs:packets_out (Results 1 – 11 of 11) sorted by relevance
/linux-4.1.27/drivers/net/wireless/mwifiex/ |
D | util.c | 31 {"wmm_ac_vo", item_size(packets_out[WMM_AC_VO]), 32 item_addr(packets_out[WMM_AC_VO]), 1}, 33 {"wmm_ac_vi", item_size(packets_out[WMM_AC_VI]), 34 item_addr(packets_out[WMM_AC_VI]), 1}, 35 {"wmm_ac_be", item_size(packets_out[WMM_AC_BE]), 36 item_addr(packets_out[WMM_AC_BE]), 1}, 37 {"wmm_ac_bk", item_size(packets_out[WMM_AC_BK]), 38 item_addr(packets_out[WMM_AC_BK]), 1}, 181 memcpy(info->packets_out, in mwifiex_get_debug_info() 182 priv->wmm.packets_out, in mwifiex_get_debug_info() [all …]
|
D | ioctl.h | 193 u32 packets_out[MAX_NUM_TID]; member
|
D | wmm.c | 1032 priv->wmm.packets_out[tid]++; in mwifiex_rotate_priolists()
|
D | main.h | 247 u32 packets_out[MAX_NUM_TID]; member
|
/linux-4.1.27/net/ipv4/ |
D | tcp_timer.c | 74 (!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()
|
D | tcp_input.c | 761 rate *= max(tp->snd_cwnd, tp->packets_out); in tcp_update_pacing_rate() 1654 state.reord = tp->packets_out; in tcp_sacktag_write_queue() 1675 if (!tp->packets_out) in tcp_sacktag_write_queue() 1849 holes = min(holes, tp->packets_out); in tcp_limit_reno_sacked() 1851 if ((tp->sacked_out + holes) > tp->packets_out) { in tcp_limit_reno_sacked() 1852 tp->sacked_out = tp->packets_out - holes; in tcp_limit_reno_sacked() 1866 tcp_update_reordering(sk, tp->packets_out + addend, 0); in tcp_check_reno_reordering() 2162 __u32 packets_out; in tcp_time_to_recover() local 2175 packets_out = tp->packets_out; in tcp_time_to_recover() 2176 if (packets_out <= tp->reordering && in tcp_time_to_recover() [all …]
|
D | tcp_output.c | 76 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() 169 (!tp->packets_out && (s32)(now - tp->lsndtime) > icsk->icsk_rto)) in tcp_event_data_sent() 1103 tp->packets_out -= decr; in tcp_adjust_pcount() 1483 tp->packets_out > tp->max_packets_out) { in tcp_cwnd_validate() 1484 tp->max_packets_out = tp->packets_out; in tcp_cwnd_validate() 1495 if (tp->packets_out > tp->snd_cwnd_used) in tcp_cwnd_validate() 1496 tp->snd_cwnd_used = tp->packets_out; in tcp_cwnd_validate() 1538 (!nonagle && tp->packets_out && tcp_minshall_check(tp))); in tcp_nagle_check() 2155 return (push_one == 2) || (!tp->packets_out && tcp_send_head(sk)); in tcp_write_xmit() [all …]
|
D | tcp_minisocks.c | 466 newtp->packets_out = 0; in tcp_create_openreq_child()
|
D | tcp.c | 2213 tp->packets_out = 0; in tcp_disconnect() 2644 info->tcpi_unacked = tp->packets_out; in tcp_get_info()
|
/linux-4.1.27/include/linux/ |
D | tcp.h | 214 u32 packets_out; /* Packets which are "in flight" */ member
|
/linux-4.1.27/include/net/ |
D | tcp.h | 959 return tp->packets_out - tcp_left_out(tp) + tp->retrans_out; in tcp_packets_in_flight() 992 #define tcp_verify_left_out(tp) WARN_ON(tcp_left_out(tp) > tp->packets_out) 1051 if (!tp->packets_out && !icsk->icsk_pending) in tcp_check_probe_timer() 1550 return tp->packets_out < 4 && !tcp_in_initial_slowstart(tp); in tcp_stream_is_thin()
|