#include <scx/common.bpf.h>
SEC("struct_ops/ssthresh")
__u32 BPF_PROG(tcp_ca_ssthresh, struct sock *sk)
{
scx_bpf_kick_cpu(0, 0);
return 2;
}
SEC("struct_ops/cong_avoid")
void BPF_PROG(tcp_ca_cong_avoid, struct sock *sk, __u32 ack, __u32 acked) {}
SEC("struct_ops/undo_cwnd")
__u32 BPF_PROG(tcp_ca_undo_cwnd, struct sock *sk) { return 2; }
SEC(".struct_ops")
struct tcp_congestion_ops tcp_non_scx_ca = {
.ssthresh = (void *)tcp_ca_ssthresh,
.cong_avoid = (void *)tcp_ca_cong_avoid,
.undo_cwnd = (void *)tcp_ca_undo_cwnd,
.name = "tcp_kfunc_deny",
};
char _license[] SEC("license") = "GPL";