Home
last modified time | relevance | path

Searched refs:app_limited (Results 1 – 5 of 5) sorted by relevance

/linux/tools/testing/selftests/bpf/progs/
H A Dtcp_ca_write_sk_pacing.c41 tp->app_limited = (tp->delivered + tcp_packets_in_flight(tp)) ?: 1; in BPF_PROG()
/linux/net/ipv4/
H A Dbpf_tcp_ca.c103 case offsetof(struct tcp_sock, app_limited): in bpf_tcp_ca_btf_struct_access()
104 end = offsetofend(struct tcp_sock, app_limited); in bpf_tcp_ca_btf_struct_access()
H A Dtcp_input.c1731 if (tp->app_limited && after(tp->delivered, tp->app_limited)) in tcp_rate_gen()
1732 tp->app_limited = 0; in tcp_rate_gen()
H A Dtcp_output.c1502 TCP_SKB_CB(skb)->tx.is_app_limited = tp->app_limited ? 1 : 0; in tcp_rate_skb_sent()
/linux/include/linux/
H A Dtcp.h324 u32 app_limited; /* limited until "delivered" reaches this val */ member