mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 10:20:49 +07:00
bpf: Fix tcp_cong_kern.c sample program
The program was returning -1 in some cases which is not allowed
by the verifier any longer.
Fixes: 390ee7e29f
("bpf: enforce return code for cgroup-bpf programs")
Signed-off-by: Lawrence Brakmo <brakmo@fb.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
a4174f0560
commit
2ff969fbe2
@ -39,8 +39,10 @@ int bpf_cong(struct bpf_sock_ops *skops)
|
|||||||
* if neither port numberis 55601
|
* if neither port numberis 55601
|
||||||
*/
|
*/
|
||||||
if (bpf_ntohl(skops->remote_port) != 55601 &&
|
if (bpf_ntohl(skops->remote_port) != 55601 &&
|
||||||
skops->local_port != 55601)
|
skops->local_port != 55601) {
|
||||||
return -1;
|
skops->reply = -1;
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
op = (int) skops->op;
|
op = (int) skops->op;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user