diff options
author | John Fastabend <john.fastabend@gmail.com> | 2017-11-01 03:17:31 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-11-01 03:43:50 +0100 |
commit | 04686ef299db5ff299bfc5a4504b189e46842078 (patch) | |
tree | a370942e93babe219c14f3022f8d78f69198c328 /include | |
parent | net: phy: marvell: Only configure RGMII delays when using RGMII (diff) | |
download | linux-04686ef299db5ff299bfc5a4504b189e46842078.tar.xz linux-04686ef299db5ff299bfc5a4504b189e46842078.zip |
bpf: remove SK_REDIRECT from UAPI
Now that SK_REDIRECT is no longer a valid return code. Remove it
from the UAPI completely. Then do a namespace remapping internal
to sockmap so SK_REDIRECT is no longer externally visible.
Patchs primary change is to do a namechange from SK_REDIRECT to
__SK_REDIRECT
Reported-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: John Fastabend <john.fastabend@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/uapi/linux/bpf.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/uapi/linux/bpf.h b/include/uapi/linux/bpf.h index 0d7948ce2128..7bf4c750dd3a 100644 --- a/include/uapi/linux/bpf.h +++ b/include/uapi/linux/bpf.h @@ -788,7 +788,6 @@ struct xdp_md { enum sk_action { SK_DROP = 0, SK_PASS, - SK_REDIRECT, }; #define BPF_TAG_SIZE 8 |