Home
last modified time | relevance | path

Searched refs:tcp_ca_event (Results 1 – 17 of 17) sorted by relevance

/linux-6.15/tools/testing/selftests/bpf/progs/
H A Dtcp_ca_kfunc.c11 extern void bbr_cwnd_event(struct sock *sk, enum tcp_ca_event event) __ksym;
18 extern void dctcp_cwnd_event(struct sock *sk, enum tcp_ca_event ev) __ksym;
27 extern void cubictcp_cwnd_event(struct sock *sk, enum tcp_ca_event event) __ksym;
70 void BPF_PROG(cwnd_event, struct sock *sk, enum tcp_ca_event event) in BPF_PROG()
H A Dbpf_cc_cubic.c30 extern void cubictcp_cwnd_event(struct sock *sk, enum tcp_ca_event event) __ksym;
120 void BPF_PROG(bpf_cubic_cwnd_event, struct sock *sk, enum tcp_ca_event event) in BPF_PROG()
H A Dbpf_dctcp.c189 static void dctcp_ece_ack_update(struct sock *sk, enum tcp_ca_event evt, in dctcp_ece_ack_update()
211 void BPF_PROG(bpf_dctcp_cwnd_event, struct sock *sk, enum tcp_ca_event ev) in BPF_PROG()
H A Dbpf_cubic.c195 void BPF_PROG(bpf_cubic_cwnd_event, struct sock *sk, enum tcp_ca_event event) in BPF_PROG()
/linux-6.15/net/ipv4/
H A Dtcp_vegas.h22 void tcp_vegas_cwnd_event(struct sock *sk, enum tcp_ca_event event);
H A Dtcp_dctcp.h19 static inline void dctcp_ece_ack_update(struct sock *sk, enum tcp_ca_event evt, in dctcp_ece_ack_update()
H A Dtcp_veno.c113 static void tcp_veno_cwnd_event(struct sock *sk, enum tcp_ca_event event) in tcp_veno_cwnd_event()
H A Dtcp_vegas.c152 void tcp_vegas_cwnd_event(struct sock *sk, enum tcp_ca_event event) in tcp_vegas_cwnd_event()
H A Dtcp_westwood.c240 static void tcp_westwood_event(struct sock *sk, enum tcp_ca_event event) in tcp_westwood_event()
H A Dtcp_dctcp.c193 __bpf_kfunc static void dctcp_cwnd_event(struct sock *sk, enum tcp_ca_event ev) in dctcp_cwnd_event()
H A Dbpf_tcp_ca.c271 static void bpf_tcp_ca_cwnd_event(struct sock *sk, enum tcp_ca_event ev) in bpf_tcp_ca_cwnd_event()
H A Dtcp_cdg.c345 static void tcp_cdg_cwnd_event(struct sock *sk, const enum tcp_ca_event ev) in tcp_cdg_cwnd_event()
H A Dtcp_cubic.c142 __bpf_kfunc static void cubictcp_cwnd_event(struct sock *sk, enum tcp_ca_event event) in cubictcp_cwnd_event()
H A Dtcp_bbr.c332 __bpf_kfunc static void bbr_cwnd_event(struct sock *sk, enum tcp_ca_event event) in bbr_cwnd_event()
H A Dtcp_input.c385 tcp_ca_event(sk, CA_EVENT_ECN_IS_CE); in tcp_data_ecn_check()
396 tcp_ca_event(sk, CA_EVENT_ECN_NO_CE); in tcp_data_ecn_check()
2217 tcp_ca_event(sk, CA_EVENT_LOSS); in tcp_enter_loss()
2754 tcp_ca_event(sk, CA_EVENT_COMPLETE_CWR); in tcp_end_cwnd_reduction()
H A Dtcp_output.c150 tcp_ca_event(sk, CA_EVENT_CWND_RESTART); in tcp_cwnd_restart()
170 tcp_ca_event(sk, CA_EVENT_TX_START); in tcp_event_data_sent()
/linux-6.15/include/net/
H A Dtcp.h1154 enum tcp_ca_event { enum
1233 void (*cwnd_event)(struct sock *sk, enum tcp_ca_event ev);
1315 static inline void tcp_ca_event(struct sock *sk, const enum tcp_ca_event event) in tcp_ca_event() function