diff options
author | Alexei Starovoitov <ast@kernel.org> | 2018-01-20 05:37:01 +0300 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2018-01-20 05:37:02 +0300 |
commit | 1391040b6570584c177a238eeac01930beabbaa4 (patch) | |
tree | f94d94db60f1bd595fc080694f8660566eeaf28b /arch/arm/net | |
parent | 417f1d9f217922d822b64e8323458d7d03a12d4f (diff) | |
parent | 1728a4f2ad6840746a6b1b9f01d652c5842f7e8d (diff) | |
download | linux-1391040b6570584c177a238eeac01930beabbaa4.tar.xz |
Merge branch 'bpf-misc-improvements'
Daniel Borkmann says:
====================
This series adds various misc improvements to BPF: detection
of BPF helper definition misconfiguration for mem/size argument
pairs, csum_diff helper also for XDP, various test cases,
removal of the recently added pure_initcall(), restriction
of the jit sysctls to cap_sys_admin for initns, a minor size
improvement for x86 jit in alu ops, output of complexity limit
to verifier log and last but not least having the event output
more flexible with moving to const_size_or_zero type.
Thanks!
====================
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'arch/arm/net')
-rw-r--r-- | arch/arm/net/bpf_jit_32.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/arm/net/bpf_jit_32.c b/arch/arm/net/bpf_jit_32.c index 4425189bb24c..a15e7cdf8754 100644 --- a/arch/arm/net/bpf_jit_32.c +++ b/arch/arm/net/bpf_jit_32.c @@ -25,8 +25,6 @@ #include "bpf_jit_32.h" -int bpf_jit_enable __read_mostly; - #define STACK_OFFSET(k) (k) #define TMP_REG_1 (MAX_BPF_JIT_REG + 0) /* TEMP Register 1 */ #define TMP_REG_2 (MAX_BPF_JIT_REG + 1) /* TEMP Register 2 */ |