Symbol: tcp_ca_event
include/net/tcp.h
1303
void (*cwnd_event)(struct sock *sk, enum tcp_ca_event ev);
include/net/tcp.h
1400
static inline void tcp_ca_event(struct sock *sk, const enum tcp_ca_event event)
net/ipv4/bpf_tcp_ca.c
271
static void bpf_tcp_ca_cwnd_event(struct sock *sk, enum tcp_ca_event ev)
net/ipv4/tcp_bbr.c
332
__bpf_kfunc static void bbr_cwnd_event(struct sock *sk, enum tcp_ca_event event)
net/ipv4/tcp_cdg.c
345
static void tcp_cdg_cwnd_event(struct sock *sk, const enum tcp_ca_event ev)
net/ipv4/tcp_cubic.c
142
__bpf_kfunc static void cubictcp_cwnd_event(struct sock *sk, enum tcp_ca_event event)
net/ipv4/tcp_dctcp.c
193
__bpf_kfunc static void dctcp_cwnd_event(struct sock *sk, enum tcp_ca_event ev)
net/ipv4/tcp_dctcp.h
19
static inline void dctcp_ece_ack_update(struct sock *sk, enum tcp_ca_event evt,
net/ipv4/tcp_input.c
2570
tcp_ca_event(sk, CA_EVENT_LOSS);
net/ipv4/tcp_input.c
3025
tcp_ca_event(sk, CA_EVENT_COMPLETE_CWR);
net/ipv4/tcp_input.c
362
tcp_ca_event(sk, CA_EVENT_ECN_IS_CE);
net/ipv4/tcp_input.c
380
tcp_ca_event(sk, CA_EVENT_ECN_NO_CE);
net/ipv4/tcp_output.c
172
tcp_ca_event(sk, CA_EVENT_CWND_RESTART);
net/ipv4/tcp_output.c
192
tcp_ca_event(sk, CA_EVENT_TX_START);
net/ipv4/tcp_vegas.c
152
void tcp_vegas_cwnd_event(struct sock *sk, enum tcp_ca_event event)
net/ipv4/tcp_vegas.h
22
void tcp_vegas_cwnd_event(struct sock *sk, enum tcp_ca_event event);
net/ipv4/tcp_veno.c
113
static void tcp_veno_cwnd_event(struct sock *sk, enum tcp_ca_event event)
net/ipv4/tcp_westwood.c
240
static void tcp_westwood_event(struct sock *sk, enum tcp_ca_event event)
tools/testing/selftests/bpf/progs/bpf_cc_cubic.c
111
void BPF_PROG(bpf_cubic_cwnd_event, struct sock *sk, enum tcp_ca_event event)
tools/testing/selftests/bpf/progs/bpf_cc_cubic.c
26
extern void cubictcp_cwnd_event(struct sock *sk, enum tcp_ca_event event) __ksym;
tools/testing/selftests/bpf/progs/bpf_cubic.c
188
void BPF_PROG(bpf_cubic_cwnd_event, struct sock *sk, enum tcp_ca_event event)
tools/testing/selftests/bpf/progs/bpf_dctcp.c
183
static void dctcp_ece_ack_update(struct sock *sk, enum tcp_ca_event evt,
tools/testing/selftests/bpf/progs/bpf_dctcp.c
205
void BPF_PROG(bpf_dctcp_cwnd_event, struct sock *sk, enum tcp_ca_event ev)
tools/testing/selftests/bpf/progs/tcp_ca_kfunc.c
11
extern void bbr_cwnd_event(struct sock *sk, enum tcp_ca_event event) __ksym;
tools/testing/selftests/bpf/progs/tcp_ca_kfunc.c
18
extern void dctcp_cwnd_event(struct sock *sk, enum tcp_ca_event ev) __ksym;
tools/testing/selftests/bpf/progs/tcp_ca_kfunc.c
27
extern void cubictcp_cwnd_event(struct sock *sk, enum tcp_ca_event event) __ksym;
tools/testing/selftests/bpf/progs/tcp_ca_kfunc.c
70
void BPF_PROG(cwnd_event, struct sock *sk, enum tcp_ca_event event)