diff options
| author | Lawrence Brakmo <brakmo@fb.com> | 2017-11-11 01:19:53 -0500 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2017-11-11 01:52:41 -0500 |
| commit | 2ff969fbe2bfa4486b66226917352d4bb12ec1cb (patch) | |
| tree | 264456174e35e9f3b3ec3259774814c3e3367723 /samples | |
| parent | a4174f0560f849317239478b1b22afbf03a6eda2 (diff) | |
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: 390ee7e29fc8 ("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>
Diffstat (limited to 'samples')
| -rw-r--r-- | samples/bpf/tcp_cong_kern.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/samples/bpf/tcp_cong_kern.c b/samples/bpf/tcp_cong_kern.c index dac15bce1fa9..ad0f1ba8206a 100644 --- a/samples/bpf/tcp_cong_kern.c +++ b/samples/bpf/tcp_cong_kern.c | |||
| @@ -39,8 +39,10 @@ int bpf_cong(struct bpf_sock_ops *skops) | |||
| 39 | * if neither port numberis 55601 | 39 | * if neither port numberis 55601 |
| 40 | */ | 40 | */ |
| 41 | if (bpf_ntohl(skops->remote_port) != 55601 && | 41 | if (bpf_ntohl(skops->remote_port) != 55601 && |
| 42 | skops->local_port != 55601) | 42 | skops->local_port != 55601) { |
| 43 | return -1; | 43 | skops->reply = -1; |
| 44 | return 1; | ||
| 45 | } | ||
| 44 | 46 | ||
| 45 | op = (int) skops->op; | 47 | op = (int) skops->op; |
| 46 | 48 | ||
