diff options
author | Daniel Borkmann <daniel@iogearbox.net> | 2018-05-04 01:08:16 +0200 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2018-05-04 01:49:19 +0200 |
commit | e782bdcf58c5ace7b7d58b2436177de9785a18e8 (patch) | |
tree | 6410234d8d0507e20d0ac922bae4f507a838beed /arch/x86/net/Makefile | |
parent | bpf: add skb_load_bytes_relative helper (diff) | |
download | linux-e782bdcf58c5ace7b7d58b2436177de9785a18e8.tar.xz linux-e782bdcf58c5ace7b7d58b2436177de9785a18e8.zip |
bpf, x64: remove ld_abs/ld_ind
Since LD_ABS/LD_IND instructions are now removed from the core and
reimplemented through a combination of inlined BPF instructions and
a slow-path helper, we can get rid of the complexity from x64 JIT.
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'arch/x86/net/Makefile')
-rw-r--r-- | arch/x86/net/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86/net/Makefile b/arch/x86/net/Makefile index c6b464a261bb..59e123da580c 100644 --- a/arch/x86/net/Makefile +++ b/arch/x86/net/Makefile @@ -5,6 +5,5 @@ ifeq ($(CONFIG_X86_32),y) obj-$(CONFIG_BPF_JIT) += bpf_jit_comp32.o else - OBJECT_FILES_NON_STANDARD_bpf_jit.o += y - obj-$(CONFIG_BPF_JIT) += bpf_jit.o bpf_jit_comp.o + obj-$(CONFIG_BPF_JIT) += bpf_jit_comp.o endif |