summaryrefslogtreecommitdiffstats
path: root/arch/s390/net/bpf_jit_comp.c
Commit message (Expand)AuthorAgeFilesLines
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller2018-05-211-2/+61
|\
| * s390: use expoline thunks in the BPF JITMartin Schwidefsky2018-05-071-2/+61
* | bpf, s390x: remove ld_abs/ld_indDaniel Borkmann2018-05-031-116/+11
|/
* bpf, s390x: remove obsolete exception handling from div/modDaniel Borkmann2018-01-261-10/+0
* bpf: get rid of pure_initcall dependency to enable jitsDaniel Borkmann2018-01-191-2/+0
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller2017-12-221-6/+5
|\
| * bpf, s390x: do not reload skb pointers in non-skb contextDaniel Borkmann2017-12-151-6/+5
* | bpf: fix net.core.bpf_jit_enable raceAlexei Starovoitov2017-12-171-1/+1
|/
* Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/s39...Linus Torvalds2017-11-131-13/+13
|\
| * s390/bpf: take advantage of stack_depth trackingMichael Holzheu2017-11-101-13/+13
* | License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseGreg Kroah-Hartman2017-11-021-0/+1
|/
* bpf, s390x: implement jiting of BPF_J{LT, LE, SLT, SLE}Daniel Borkmann2017-08-091-0/+24
* bpf, s390: fix jit branch offset related to ldimm64Daniel Borkmann2017-08-041-1/+2
* bpf: Add jited_len to struct bpf_progMartin KaFai Lau2017-06-061-0/+1
* bpf: free up BPF_JMP | BPF_CALL | BPF_X opcodeAlexei Starovoitov2017-05-311-1/+1
* s390: use set_memory.h headerLaura Abbott2017-05-081-0/+1
* Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/s39...Linus Torvalds2017-02-221-7/+4
|\
| * s390/bpf: remove redundant check for non-null imageDaniel Borkmann2017-01-161-7/+4
* | bpf: fix unlocking of jited image when module ronx not setDaniel Borkmann2017-02-211-1/+1
* | bpf: make jited programs visible in tracesDaniel Borkmann2017-02-171-18/+0
* | bpf: remove stubs for cBPF from arch codeDaniel Borkmann2017-02-171-8/+0
|/
* bpf: xdp: Allow head adjustment in XDP progMartin KaFai Lau2016-12-081-1/+1
* s390/bpf: fix recache skb->data/hlen for skb_vlan_push/popMichael Holzheu2016-05-191-1/+1
* s390/bpf: reduce maximum program size to 64 KBMichael Holzheu2016-05-191-1/+1
* bpf, s390: add support for constant blindingDaniel Borkmann2016-05-161-17/+56
* bpf: prepare bpf_int_jit_compile/bpf_prog_select_runtime apisDaniel Borkmann2016-05-161-3/+5
* bpf: move clearing of A/X into classic to eBPF migration prologueDaniel Borkmann2015-12-181-11/+2
* ebpf: migrate bpf_prog's flags to bitfieldDaniel Borkmann2015-10-031-1/+1
* bpf: s390: Fix build error caused by the struct bpf_array member name changedKaixu Xia2015-08-111-2/+2
* bpf: provide helper that indicates eBPF was migratedDaniel Borkmann2015-07-301-1/+1
* s390/bpf: recache skb->data/hlen for skb_vlan_push/popMichael Holzheu2015-07-291-22/+33
* s390/bpf: Only clear A and X for converted BPF programsMichael Holzheu2015-07-291-9/+11
* s390/bpf: increase BPF_SIZE_MAXMichael Holzheu2015-07-291-12/+3
* s390/bpf: Fix multiple macro expansionsMichael Holzheu2015-07-291-2/+3
* s390/bpf: clear correct BPF accumulator registerMichael Holzheu2015-07-291-7/+7
* bpf: introduce bpf_skb_vlan_push/pop() helpersAlexei Starovoitov2015-07-201-0/+4
* s390/bpf: Fix backward jumpsMichael Holzheu2015-06-251-1/+1
* s390/bpf: implement bpf_tail_call() helperMichael Holzheu2015-06-091-2/+104
* s390/bpf: fix bpf frame pointer setupMichael Holzheu2015-06-031-4/+7
* s390/bpf: Fix gcov stack space problemMichael Holzheu2015-04-301-1/+4
* s390/bpf: Adjust ALU64_DIV/MOD to match interpreter changeMichael Holzheu2015-04-301-8/+6
* s390/bpf: Add s390x eBPF JIT compiler backendMichael Holzheu2015-04-151-694/+1086
* s390/bpf: Fix JMP_JGE_K (A >= K) and JMP_JGT_K (A > K)Michael Holzheu2015-01-151-6/+3
* s390/bpf: Fix JMP_JGE_X (A > X) and JMP_JGT_X (A >= X)Michael Holzheu2015-01-091-2/+2
* s390/bpf: Fix ALU_NEG (A = -A)Michael Holzheu2015-01-091-2/+2
* net: filter: constify detection of pkt_type_offsetHannes Frederic Sowa2014-09-131-34/+1
* net: bpf: be friendly to kmemcheckDaniel Borkmann2014-09-091-1/+1
* net: bpf: consolidate JIT binary allocatorDaniel Borkmann2014-09-091-36/+9
* net: bpf: make eBPF interpreter images read-onlyDaniel Borkmann2014-09-051-1/+1
* net: filter: split 'struct sk_filter' into socket and bpf partsAlexei Starovoitov2014-08-021-2/+2