fe83963b7c
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 sparc64 JIT. Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Acked-by: Alexei Starovoitov <ast@kernel.org> Acked-by: David S. Miller <davem@davemloft.net> Signed-off-by: Alexei Starovoitov <ast@kernel.org>
8 lines
150 B
Makefile
8 lines
150 B
Makefile
#
|
|
# Arch-specific network modules
|
|
#
|
|
obj-$(CONFIG_BPF_JIT) += bpf_jit_comp_$(BITS).o
|
|
ifeq ($(BITS),32)
|
|
obj-$(CONFIG_BPF_JIT) += bpf_jit_asm_32.o
|
|
endif
|