summaryrefslogtreecommitdiff
path: root/arch/x86/net/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/net/Makefile')
-rw-r--r--arch/x86/net/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/arch/x86/net/Makefile b/arch/x86/net/Makefile
index 90568c33ddb0..dddbefc0f439 100644
--- a/arch/x86/net/Makefile
+++ b/arch/x86/net/Makefile
@@ -1,4 +1,10 @@
+# SPDX-License-Identifier: GPL-2.0-only
#
# Arch-specific network modules
#
-obj-$(CONFIG_BPF_JIT) += bpf_jit.o bpf_jit_comp.o
+
+ifeq ($(CONFIG_X86_32),y)
+ obj-$(CONFIG_BPF_JIT) += bpf_jit_comp32.o
+else
+ obj-$(CONFIG_BPF_JIT) += bpf_jit_comp.o bpf_timed_may_goto.o
+endif