forked from Minki/linux
e782bdcf58
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>
10 lines
172 B
Makefile
10 lines
172 B
Makefile
#
|
|
# Arch-specific network modules
|
|
#
|
|
|
|
ifeq ($(CONFIG_X86_32),y)
|
|
obj-$(CONFIG_BPF_JIT) += bpf_jit_comp32.o
|
|
else
|
|
obj-$(CONFIG_BPF_JIT) += bpf_jit_comp.o
|
|
endif
|