mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 13:18:21 +07:00
dbf44daf7c
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 ppc64 JIT. Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Acked-by: Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com> Acked-by: Alexei Starovoitov <ast@kernel.org> Tested-by: Sandipan Das <sandipan@linux.vnet.ibm.com> Signed-off-by: Alexei Starovoitov <ast@kernel.org>
10 lines
203 B
Makefile
10 lines
203 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Arch-specific network modules
|
|
#
|
|
ifeq ($(CONFIG_PPC64),y)
|
|
obj-$(CONFIG_BPF_JIT) += bpf_jit_comp64.o
|
|
else
|
|
obj-$(CONFIG_BPF_JIT) += bpf_jit_asm.o bpf_jit_comp.o
|
|
endif
|