Symbol: ack_sample
include/net/tcp.h
1362
void (*pkts_acked)(struct sock *sk, const struct ack_sample *sample);
net/ipv4/bpf_tcp_ca.c
283
static void bpf_tcp_ca_pkts_acked(struct sock *sk, const struct ack_sample *sample)
net/ipv4/tcp_bic.c
190
static void bictcp_acked(struct sock *sk, const struct ack_sample *sample)
net/ipv4/tcp_cdg.c
299
static void tcp_cdg_acked(struct sock *sk, const struct ack_sample *sample)
net/ipv4/tcp_cubic.c
449
__bpf_kfunc static void cubictcp_acked(struct sock *sk, const struct ack_sample *sample)
net/ipv4/tcp_htcp.c
102
const struct ack_sample *sample)
net/ipv4/tcp_illinois.c
86
static void tcp_illinois_acked(struct sock *sk, const struct ack_sample *sample)
net/ipv4/tcp_input.c
3773
struct ack_sample sample = { .pkts_acked = pkts_acked,
net/ipv4/tcp_lp.c
274
static void tcp_lp_pkts_acked(struct sock *sk, const struct ack_sample *sample)
net/ipv4/tcp_nv.c
239
static void tcpnv_acked(struct sock *sk, const struct ack_sample *sample)
net/ipv4/tcp_vegas.c
111
void tcp_vegas_pkts_acked(struct sock *sk, const struct ack_sample *sample)
net/ipv4/tcp_vegas.h
21
void tcp_vegas_pkts_acked(struct sock *sk, const struct ack_sample *sample);
net/ipv4/tcp_veno.c
74
const struct ack_sample *sample)
net/ipv4/tcp_westwood.c
104
const struct ack_sample *sample)
tools/testing/selftests/bpf/progs/bpf_cc_cubic.c
157
void BPF_PROG(bpf_cubic_acked, struct sock *sk, const struct ack_sample *sample)
tools/testing/selftests/bpf/progs/bpf_cc_cubic.c
30
extern void cubictcp_acked(struct sock *sk, const struct ack_sample *sample) __ksym;
tools/testing/selftests/bpf/progs/bpf_cubic.c
507
void BPF_PROG(bpf_cubic_acked, struct sock *sk, const struct ack_sample *sample)
tools/testing/selftests/bpf/progs/tcp_ca_kfunc.c
107
void BPF_PROG(pkts_acked, struct sock *sk, const struct ack_sample *sample)
tools/testing/selftests/bpf/progs/tcp_ca_kfunc.c
29
extern void cubictcp_acked(struct sock *sk, const struct ack_sample *sample) __ksym;