diff options
author | Yuchung Cheng <[email protected]> | 2017-08-24 15:48:21 -0700 |
---|---|---|
committer | David S. Miller <[email protected]> | 2017-08-24 18:23:20 -0700 |
commit | 4e458debbb69af0cbde5bd6430d64519d5f59274 (patch) | |
tree | 4cac610ba1034740a055057d09f1b11197a22b71 | |
parent | c45182eb967af11e9482168be5be41aa22e5d321 (diff) |
bpf: fix bpf_setsockopts return value
This patch fixes a bug causing any sock operations to always return EINVAL.
Fixes: a5192c52377e ("bpf: fix to bpf_setsockops").
Reported-by: Neal Cardwell <[email protected]>
Signed-off-by: Yuchung Cheng <[email protected]>
Acked-by: Neal Cardwell <[email protected]>
Acked-by: Craig Gallek <[email protected]>
Acked-by: Daniel Borkmann <[email protected]>
Acked-by: Lawrence Brakmo <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
-rw-r--r-- | net/core/filter.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/core/filter.c b/net/core/filter.c index 6280a602604c..8eb81e5fae08 100644 --- a/net/core/filter.c +++ b/net/core/filter.c @@ -2872,7 +2872,6 @@ BPF_CALL_5(bpf_setsockopt, struct bpf_sock_ops_kern *, bpf_sock, ret = -EINVAL; } } - ret = -EINVAL; #endif } else { ret = -EINVAL; |