Home
last modified time | relevance | path

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

/linux/samples/bpf/
H A Dhbm_kern.h76 int packets_out; member
96 pkti->packets_out = tp->packets_out; in get_tcp_info()
104 pkti->packets_out = 0; in get_tcp_info()
H A Dhbm_edt_kern.c147 if (pkti.is_tcp && drop_flag && pkti.packets_out <= 1) { in _hbm_out_cg()
/linux/drivers/net/wireless/marvell/mwifiex/
H A Dutil.c21 {"wmm_ac_vo", item_size(packets_out[WMM_AC_VO]),
22 item_addr(packets_out[WMM_AC_VO]), 1},
23 {"wmm_ac_vi", item_size(packets_out[WMM_AC_VI]),
24 item_addr(packets_out[WMM_AC_VI]), 1},
25 {"wmm_ac_be", item_size(packets_out[WMM_AC_BE]),
26 item_addr(packets_out[WMM_AC_BE]), 1},
27 {"wmm_ac_bk", item_size(packets_out[WMM_AC_BK]),
28 item_addr(packets_out[WMM_AC_BK]), 1},
154 memcpy(info->packets_out, in mwifiex_get_debug_info()
155 priv->wmm.packets_out, in mwifiex_get_debug_info()
[all …]
H A Dioctl.h194 u32 packets_out[MAX_NUM_TID]; member
H A Dwmm.c1189 priv->wmm.packets_out[tid]++; in mwifiex_rotate_priolists()
/linux/tools/testing/selftests/bpf/progs/
H A Dbpf_cc_cubic.c59 rate *= max(tp->snd_cwnd, tp->packets_out); in tcp_update_pacing_rate()
72 __u32 pkts_in_flight = tp->packets_out - (tp->sacked_out + tp->lost_out) + tp->retrans_out; in tcp_update_pacing_rate()
H A Dtcp_ca_write_sk_pacing.c18 return tp->packets_out - tcp_left_out(tp) + tp->retrans_out; in tcp_packets_in_flight()
H A Dtest_sock_fields.c102 dst->packets_out = src->packets_out; in tpcpy()
/linux/net/ipv4/
H A Dtcp_timer.c126 (!tp->snd_wnd && !tp->packets_out)) in tcp_out_of_resources()
396 if (tp->packets_out || !skb) { in tcp_probe_timer()
555 if (!tp->packets_out) in tcp_retransmit_timer()
821 if (tp->packets_out || !tcp_write_queue_empty(sk)) in tcp_keepalive_timer()
H A Dtcp_output.c87 unsigned int prior_packets = tp->packets_out;
97 tp->packets_out += tcp_skb_pcount(skb); in tcp_event_new_data_sent()
1485 * Note that we use packets_out instead of tcp_packets_in_flight(tp) in tcp_rate_skb_sent()
1491 if (!tp->packets_out) { in tcp_rate_skb_sent()
1782 tp->packets_out -= decr; in tcp_adjust_pcount()
2171 tp->packets_out > tp->max_packets_out)) { in tcp_cwnd_validate()
2173 tp->max_packets_out = tp->packets_out; in tcp_cwnd_validate()
2183 if (tp->packets_out > tp->snd_cwnd_used) in tcp_cwnd_validate()
2184 tp->snd_cwnd_used = tp->packets_out; in tcp_cwnd_validate()
2239 (!nonagle && tp->packets_out in tcp_nagle_check()
[all...]
H A Dtcp_input.c1159 rate *= max(tcp_snd_cwnd(tp), tp->packets_out); in tcp_update_pacing_rate()
2252 if (!tp->packets_out) in tcp_sacktag_write_queue()
2416 * packets_out. Returns false if sacked_out adjustement wasn't necessary.
2423 holes = min(holes, tp->packets_out); in tcp_limit_reno_sacked()
2425 if ((tp->sacked_out + holes) > tp->packets_out) { in tcp_limit_reno_sacked()
2426 tp->sacked_out = tp->packets_out - holes; in tcp_limit_reno_sacked()
2444 min_t(u32, tp->packets_out + addend, in tcp_check_reno_reordering()
2648 * in_flight = packets_out - left_out + retrans_out
2650 * packets_out is SND.NXT-SND.UNA counted in packets.
2671 * lost_out = packets_out an
[all...]
H A Dtcp.c3357 tcp_sk(sk)->packets_out = 0; in tcp_write_queue_purge()
4284 info->tcpi_unacked = tp->packets_out; in tcp_get_info()
5260 CACHELINE_ASSERT_GROUP_MEMBER(struct tcp_sock, tcp_sock_write_txrx, packets_out); in tcp_struct_check()
/linux/include/net/
H A Dtcp.h1503 * tp->packets_out to determine if the send queue is empty or not. in tcp_packets_in_flight()
1513 return tp->packets_out - tcp_left_out(tp) + tp->retrans_out;
1562 #define tcp_verify_left_out(tp) WARN_ON(tcp_left_out(tp) > tp->packets_out) in tcp_max_tso_deferred_mss()
1664 if (!tcp_sk(sk)->packets_out && !inet_csk(sk)->icsk_pending)
1723 tp->packets_out || ca_ops->cong_control)
2395 return tp->packets_out < 4 && !tcp_in_initial_slowstart(tp); in tcp_highest_sack_replace()
2678 tcp_sk(sk)->packets_out, tcp_sk(sk)->sacked_out, in tcp_plb_init()
/linux/tools/testing/selftests/bpf/prog_tests/
H A Dsock_fields.c95 tp->packets_out, tp->retrans_out, tp->total_retrans, in print_tp()
/linux/tools/include/uapi/linux/
H A Dbpf.h6502 __u32 packets_out; /* Packets which are "in flight" */
6961 __u32 packets_out;
6439 __u32 packets_out; /* Packets which are "in flight" */ global() member
6896 __u32 packets_out; global() member
/linux/net/core/
H A Dfilter.c7517 case offsetof(struct bpf_tcp_sock, packets_out): in BPF_CALL_1()
7518 BPF_TCP_SOCK_GET_COMMON(packets_out); in BPF_CALL_1()
10997 case offsetof(struct bpf_sock_ops, packets_out): in sock_ops_convert_ctx_access()
10998 SOCK_OPS_GET_TCP_SOCK_FIELD(packets_out); in sock_ops_convert_ctx_access()