mirror of
https://github.com/torvalds/linux.git
synced 2024-11-28 23:21:31 +00:00
307d149d94
The config options MIPS_CBPF_JIT and MIPS_EBPF_JIT are useless, remove them in arch/mips/Kconfig, and then modify arch/mips/net/Makefile. Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Acked-by: Johan Almbladh <johan.almbladh@anyfinetworks.com> Link: https://lore.kernel.org/bpf/1633915150-13220-2-git-send-email-yangtiezhu@loongson.cn
11 lines
241 B
Makefile
11 lines
241 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# MIPS networking code
|
|
|
|
obj-$(CONFIG_BPF_JIT) += bpf_jit_comp.o
|
|
|
|
ifeq ($(CONFIG_32BIT),y)
|
|
obj-$(CONFIG_BPF_JIT) += bpf_jit_comp32.o
|
|
else
|
|
obj-$(CONFIG_BPF_JIT) += bpf_jit_comp64.o
|
|
endif
|