diff options
author | Zi Shen Lim <zlim.lnx@gmail.com> | 2014-08-26 21:15:30 -0700 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2014-09-08 14:39:21 +0100 |
commit | e54bcde3d69d40023ae77727213d14f920eb264a (patch) | |
tree | c21f9a42c5d0d7fc8a6a65f28acb99112673f909 /arch/arm64/Makefile | |
parent | 5e6e15a2c4b529fd3cbf367b734842c4d8f6b0fa (diff) | |
download | op-kernel-dev-e54bcde3d69d40023ae77727213d14f920eb264a.zip op-kernel-dev-e54bcde3d69d40023ae77727213d14f920eb264a.tar.gz |
arm64: eBPF JIT compiler
The JIT compiler emits A64 instructions. It supports eBPF only.
Legacy BPF is supported thanks to conversion by BPF core.
JIT is enabled in the same way as for other architectures:
echo 1 > /proc/sys/net/core/bpf_jit_enable
Or for additional compiler output:
echo 2 > /proc/sys/net/core/bpf_jit_enable
See Documentation/networking/filter.txt for more information.
The implementation passes all 57 tests in lib/test_bpf.c
on ARMv8 Foundation Model :) Also tested by Will on Juno platform.
Signed-off-by: Zi Shen Lim <zlim.lnx@gmail.com>
Acked-by: Alexei Starovoitov <ast@plumgrid.com>
Acked-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm64/Makefile')
-rw-r--r-- | arch/arm64/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm64/Makefile b/arch/arm64/Makefile index 2df5e5d..59c86b6 100644 --- a/arch/arm64/Makefile +++ b/arch/arm64/Makefile @@ -47,6 +47,7 @@ endif export TEXT_OFFSET GZFLAGS core-y += arch/arm64/kernel/ arch/arm64/mm/ +core-$(CONFIG_NET) += arch/arm64/net/ core-$(CONFIG_KVM) += arch/arm64/kvm/ core-$(CONFIG_XEN) += arch/arm64/xen/ core-$(CONFIG_CRYPTO) += arch/arm64/crypto/ |