| /linux-6.15/samples/bpf/ |
| H A D | hbm_kern.h | 76 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 D | hbm_edt_kern.c | 147 if (pkti.is_tcp && drop_flag && pkti.packets_out <= 1) { in _hbm_out_cg()
|
| /linux-6.15/drivers/net/wireless/marvell/mwifiex/ |
| H A D | util.c | 21 {"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}, 172 memcpy(info->packets_out, in mwifiex_get_debug_info() 173 priv->wmm.packets_out, in mwifiex_get_debug_info() [all …]
|
| H A D | ioctl.h | 194 u32 packets_out[MAX_NUM_TID]; member
|
| H A D | wmm.c | 1189 priv->wmm.packets_out[tid]++; in mwifiex_rotate_priolists()
|
| H A D | main.h | 316 u32 packets_out[MAX_NUM_TID]; member
|
| /linux-6.15/tools/testing/selftests/bpf/progs/ |
| H A D | bpf_cc_cubic.c | 68 rate *= max(tp->snd_cwnd, tp->packets_out); in tcp_update_pacing_rate() 81 __u32 pkts_in_flight = tp->packets_out - (tp->sacked_out + tp->lost_out) + tp->retrans_out; in tcp_cwnd_reduction()
|
| H A D | tcp_ca_write_sk_pacing.c | 20 return tp->packets_out - tcp_left_out(tp) + tp->retrans_out; in tcp_packets_in_flight()
|
| H A D | test_sock_fields.c | 102 dst->packets_out = src->packets_out; in tpcpy()
|
| /linux-6.15/net/ipv4/ |
| H A D | tcp_timer.c | 124 (!tp->snd_wnd && !tp->packets_out)) in tcp_out_of_resources() 394 if (tp->packets_out || !skb) { in tcp_probe_timer() 551 if (!tp->packets_out) in tcp_retransmit_timer() 820 if (tp->packets_out || !tcp_write_queue_empty(sk)) in tcp_keepalive_timer()
|
| H A D | tcp_plb.c | 59 !tcp_sk(sk)->packets_out && in tcp_plb_check_rehash()
|
| H A D | tcp_output.c | 71 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() 1544 tp->packets_out -= decr; in tcp_adjust_pcount() 1942 tp->max_packets_out = tp->packets_out; in tcp_cwnd_validate() 1952 if (tp->packets_out > tp->snd_cwnd_used) in tcp_cwnd_validate() 1953 tp->snd_cwnd_used = tp->packets_out; in tcp_cwnd_validate() 2905 if (tp->packets_out == 1) in tcp_schedule_loss_probe() 2961 pcount = tp->packets_out; in tcp_send_loss_probe() 2963 if (tp->packets_out > pcount) in tcp_send_loss_probe() 3494 if (!tp->packets_out) in tcp_xmit_retransmit_queue() [all …]
|
| H A D | tcp_rate.c | 58 if (!tp->packets_out) { in tcp_rate_skb_sent()
|
| H A D | tcp_input.c | 1892 if (!tp->packets_out) in tcp_sacktag_write_queue() 2063 holes = min(holes, tp->packets_out); in tcp_limit_reno_sacked() 2066 tp->sacked_out = tp->packets_out - holes; in tcp_limit_reno_sacked() 2413 WARN_ON(packets > tp->packets_out); in tcp_mark_head_lost() 2556 tp->packets_out); in DBGUNDO() 2565 tp->packets_out); in DBGUNDO() 3081 if (!tp->packets_out && tp->sacked_out) in tcp_fastretrans_alert() 3283 if (!tp->packets_out) { in tcp_rearm_rto() 3417 tp->packets_out -= acked_pcount; in tcp_clean_rtx_queue() 3534 if (!tp->packets_out && tcp_is_sack(tp)) { in tcp_clean_rtx_queue() [all …]
|
| H A D | tcp.c | 3293 tcp_sk(sk)->packets_out = 0; in tcp_write_queue_purge() 4172 info->tcpi_unacked = tp->packets_out; in tcp_get_info() 5085 CACHELINE_ASSERT_GROUP_MEMBER(struct tcp_sock, tcp_sock_write_txrx, packets_out); in tcp_struct_check()
|
| /linux-6.15/include/net/ |
| H A D | tcp.h | 1377 return tp->packets_out - tcp_left_out(tp) + tp->retrans_out; in tcp_packets_in_flight() 1426 #define tcp_verify_left_out(tp) WARN_ON(tcp_left_out(tp) > tp->packets_out) 1528 if (!tcp_sk(sk)->packets_out && !inet_csk(sk)->icsk_pending) in tcp_check_probe_timer() 1582 tp->packets_out || ca_ops->cong_control) in tcp_slow_start_after_idle_check() 2239 return tp->packets_out < 4 && !tcp_in_initial_slowstart(tp); in tcp_stream_is_thin() 2511 tcp_sk(sk)->packets_out, tcp_sk(sk)->sacked_out, in tcp_warn_once()
|
| /linux-6.15/Documentation/networking/net_cachelines/ |
| H A D | tcp_sock.rst | 82 u32 packets_out read_write read_write tcp_p…
|
| /linux-6.15/tools/testing/selftests/bpf/prog_tests/ |
| H A D | sock_fields.c | 95 tp->packets_out, tp->retrans_out, tp->total_retrans, in print_tp()
|
| /linux-6.15/include/linux/ |
| H A D | tcp.h | 297 u32 packets_out; /* Packets which are "in flight" */ member
|
| /linux-6.15/tools/include/uapi/linux/ |
| H A D | bpf.h | 6385 __u32 packets_out; /* Packets which are "in flight" */ member 6828 __u32 packets_out; member
|
| /linux-6.15/include/uapi/linux/ |
| H A D | bpf.h | 6385 __u32 packets_out; /* Packets which are "in flight" */ member 6828 __u32 packets_out; member
|
| /linux-6.15/net/core/ |
| H A D | filter.c | 7280 case offsetof(struct bpf_tcp_sock, packets_out): in bpf_tcp_sock_convert_ctx_access() 7281 BPF_TCP_SOCK_GET_COMMON(packets_out); in bpf_tcp_sock_convert_ctx_access() 10749 case offsetof(struct bpf_sock_ops, packets_out): in sock_ops_convert_ctx_access() 10750 SOCK_OPS_GET_TCP_SOCK_FIELD(packets_out); in sock_ops_convert_ctx_access()
|