This is in preparation for adding the 64-bit eBPF JIT. Signed-off-by: David S. Miller <davem@davemloft.net>
@@ -1,4 +1,4 @@
#
# Arch-specific network modules
-obj-$(CONFIG_BPF_JIT) += bpf_jit_asm.o bpf_jit_comp.o
+obj-$(CONFIG_BPF_JIT) += bpf_jit_asm_$(BITS).o bpf_jit_comp_$(BITS).o
@@ -1,6 +1,6 @@
#include <asm/ptrace.h>
-#include "bpf_jit.h"
+#include "bpf_jit_32.h"
#ifdef CONFIG_SPARC64
#define SAVE_SZ 176
@@ -0,0 +1 @@
+#include "bpf_jit_asm_32.S"
@@ -8,7 +8,7 @@
#include <asm/cacheflush.h>
int bpf_jit_enable __read_mostly;
+#include "bpf_jit_comp_32.c"