projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7e32a09
)
bpf: tcp: Fix an error in the bpf_tcp_ca_kfunc_ids list
author
Martin KaFai Lau
<kafai@fb.com>
Mon, 29 Mar 2021 00:32:13 +0000
(17:32 -0700)
committer
Alexei Starovoitov
<ast@kernel.org>
Mon, 29 Mar 2021 01:17:08 +0000
(18:17 -0700)
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
net/ipv4/bpf_tcp_ca.c
patch
|
blob
|
blame
|
history
diff --git
a/net/ipv4/bpf_tcp_ca.c
b/net/ipv4/bpf_tcp_ca.c
index 12777d444d0fe81618b919032dcbc8914f0df702..6bb7b335ff9f93c15ee57a4b2bee0d673623adde 100644
(file)
--- 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_even
t
)
BTF_ID(func, bbr_ssthresh)
BTF_ID(func, bbr_min_tso_segs)
BTF_ID(func, bbr_set_state)