diff options
author | Martin KaFai Lau <kafai@fb.com> | 2021-03-29 03:32:13 +0300 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2021-03-29 04:17:08 +0300 |
commit | 21cfd2db9f51c0454d44a103ff12398c2236d3a8 (patch) | |
tree | 2a66fd10884d16182fefe989d43258fb8ba24f3b /net/ipv4/bpf_tcp_ca.c | |
parent | 7e32a09fdcb38d97f148f72bf78a3b49e8d1612d (diff) | |
download | linux-21cfd2db9f51c0454d44a103ff12398c2236d3a8.tar.xz |
bpf: tcp: Fix an error in the bpf_tcp_ca_kfunc_ids list
There is a typo in the bbr function, s/even/event/.
This patch fixes it.
Fixes: e78aea8b2170 ("bpf: tcp: Put some tcp cong functions in allowlist for bpf-tcp-cc")
Signed-off-by: Martin KaFai Lau <kafai@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Link: https://lore.kernel.org/bpf/20210329003213.2274210-1-kafai@fb.com
Diffstat (limited to 'net/ipv4/bpf_tcp_ca.c')
-rw-r--r-- | net/ipv4/bpf_tcp_ca.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/bpf_tcp_ca.c b/net/ipv4/bpf_tcp_ca.c index 12777d444d0f..6bb7b335ff9f 100644 --- a/net/ipv4/bpf_tcp_ca.c +++ b/net/ipv4/bpf_tcp_ca.c @@ -206,7 +206,7 @@ BTF_ID(func, bbr_init) BTF_ID(func, bbr_main) BTF_ID(func, bbr_sndbuf_expand) BTF_ID(func, bbr_undo_cwnd) -BTF_ID(func, bbr_cwnd_even) +BTF_ID(func, bbr_cwnd_event) BTF_ID(func, bbr_ssthresh) BTF_ID(func, bbr_min_tso_segs) BTF_ID(func, bbr_set_state) |