Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6b3d4eec authored by David S. Miller's avatar David S. Miller
Browse files

sparc: Split BPF JIT into 32-bit and 64-bit.



This is in preparation for adding the 64-bit eBPF JIT.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent fb796707
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
#
# 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
+0 −0

File moved.

+1 −1
Original line number Diff line number Diff line
#include <asm/ptrace.h>

#include "bpf_jit.h"
#include "bpf_jit_32.h"

#ifdef CONFIG_SPARC64
#define SAVE_SZ		176
+1 −0
Original line number Diff line number Diff line
#include "bpf_jit_asm_32.S"
+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@
#include <asm/cacheflush.h>
#include <asm/ptrace.h>

#include "bpf_jit.h"
#include "bpf_jit_32.h"

int bpf_jit_enable __read_mostly;

Loading