mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-05 21:55:12 +07:00
![Daniel Borkmann](/assets/img/avatar_default.png)
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
|