| Commit message (Expand) | Author | Age | Files | Lines |
* | bpf, x86: Fix BPF_FETCH atomic and/or/xor with r0 as src | Brendan Jackman | 2021-02-22 | 1 | -3/+7 |
* | bpf: Add per-program recursion prevention mechanism | Alexei Starovoitov | 2021-02-11 | 1 | -0/+15 |
* | bpf: Compute program stats for sleepable programs | Alexei Starovoitov | 2021-02-11 | 1 | -19/+12 |
* | bpf: Emit explicit NULL pointer checks for PROBE_LDX instructions. | Alexei Starovoitov | 2021-02-04 | 1 | -0/+19 |
* | bpf,x64: Pad NOPs to make images converge more easily | Gary Lin | 2021-01-20 | 1 | -28/+112 |
* | bpf: Add bitwise atomic instructions | Brendan Jackman | 2021-01-15 | 1 | -1/+49 |
* | bpf: Add instructions for atomic_[cmp]xchg | Brendan Jackman | 2021-01-15 | 1 | -0/+8 |
* | bpf: Add BPF_FETCH field / create atomic_fetch_add instruction | Brendan Jackman | 2021-01-15 | 1 | -0/+4 |
* | bpf: Rename BPF_XADD and prepare to encode other atomics in .imm | Brendan Jackman | 2021-01-15 | 2 | -16/+36 |
* | bpf: x86: Factor out a lookup table for some ALU opcodes | Brendan Jackman | 2021-01-15 | 1 | -18/+15 |
* | bpf: x86: Factor out emission of REX byte | Brendan Jackman | 2021-01-15 | 1 | -16/+23 |
* | bpf: x86: Factor out emission of ModR/M for *(reg + off) | Brendan Jackman | 2021-01-15 | 1 | -18/+25 |
* | bpf: x64: Do not emit sub/add 0, %rsp when !stack_depth | Maciej Fijalkowski | 2020-09-30 | 1 | -10/+23 |
* | bpf, x64: Drop "pop %rcx" instruction on BPF JIT epilogue | Maciej Fijalkowski | 2020-09-30 | 1 | -2/+0 |
* | bpf, x64: rework pro/epilogue and tailcall handling in JIT | Maciej Fijalkowski | 2020-09-18 | 1 | -48/+189 |
* | bpf: rename poke descriptor's 'ip' member to 'tailcall_target' | Maciej Fijalkowski | 2020-09-17 | 1 | -9/+11 |
* | bpf, x64: use %rcx instead of %rax for tail call retpolines | Maciej Fijalkowski | 2020-09-17 | 1 | -10/+10 |
* | bpf: Introduce sleepable BPF programs | Alexei Starovoitov | 2020-08-28 | 1 | -11/+21 |
* | bpf, i386: Remove unneeded conversion to bool | Jason Yan | 2020-05-07 | 1 | -2/+2 |
* | bpf, x86_32: Fix logic error in BPF_LDX zero-extension | Wang YanQing | 2020-04-25 | 1 | -1/+1 |
* | bpf, x86_32: Fix clobbering of dst for BPF_JSET | Luke Nelson | 2020-04-25 | 1 | -4/+18 |
* | bpf, x86_32: Fix incorrect encoding in BPF_LDX zero-extension | Luke Nelson | 2020-04-25 | 1 | -1/+3 |
* | bpf, x86: Fix encoding for lower 8-bit registers in BPF_STX BPF_B | Luke Nelson | 2020-04-21 | 1 | -3/+15 |
* | Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net | David S. Miller | 2020-03-26 | 1 | -4/+6 |
|\ |
|
| * | bpf, x32: Fix bug with JMP32 JSET BPF_X checking upper bits | Luke Nelson | 2020-03-06 | 1 | -4/+6 |
* | | bpf: Fix trampoline generation for fmod_ret programs | Alexei Starovoitov | 2020-03-11 | 1 | -26/+5 |
* | | bpf: Introduce BPF_MODIFY_RETURN | KP Singh | 2020-03-04 | 1 | -11/+119 |
* | | bpf: JIT helpers for fmod_ret progs | KP Singh | 2020-03-04 | 1 | -63/+85 |
* | | bpf: Refactor trampoline update code | KP Singh | 2020-03-04 | 1 | -15/+16 |
|/ |
|
* | bpf: Introduce BPF_MAP_TYPE_STRUCT_OPS | Martin KaFai Lau | 2020-01-09 | 1 | -10/+8 |
* | bpf, x86: Align dispatcher branch targets to 16B | Björn Töpel | 2019-12-13 | 1 | -1/+29 |
* | bpf: Introduce BPF dispatcher | Björn Töpel | 2019-12-13 | 1 | -0/+122 |
* | bpf: Simplify __bpf_arch_text_poke poke type handling | Daniel Borkmann | 2019-11-25 | 1 | -60/+25 |
* | bpf, x86: Emit patchable direct jump as tail call | Daniel Borkmann | 2019-11-25 | 1 | -95/+187 |
* | bpf, x86: Generalize and extend bpf_arch_text_poke for direct jumps | Daniel Borkmann | 2019-11-25 | 1 | -18/+46 |
* | bpf: Support attaching tracing BPF program to other BPF programs | Alexei Starovoitov | 2019-11-15 | 1 | -1/+2 |
* | bpf: Reserve space for BPF trampoline in BPF programs | Alexei Starovoitov | 2019-11-15 | 1 | -2/+7 |
* | bpf: Introduce BPF trampoline | Alexei Starovoitov | 2019-11-15 | 1 | -2/+209 |
* | bpf: Add bpf_arch_text_poke() helper | Alexei Starovoitov | 2019-11-15 | 1 | -0/+51 |
* | bpf: Refactor x86 JIT into helpers | Alexei Starovoitov | 2019-11-15 | 1 | -54/+98 |
* | bpf: Add support for BTF pointers to x86 JIT | Alexei Starovoitov | 2019-10-17 | 1 | -4/+93 |
* | bpf, x86: Small optimization in comparing against imm0 | Daniel Borkmann | 2019-10-04 | 1 | -0/+10 |
* | bpf: fix x64 JIT code generation for jmp to 1st insn | Alexei Starovoitov | 2019-08-01 | 1 | -4/+5 |
* | Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net | David S. Miller | 2019-07-09 | 1 | -255/+29 |
|\ |
|
| * | Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf | David S. Miller | 2019-07-03 | 1 | -255/+29 |
| |\ |
|
| | * | bpf, x32: Fix bug with ALU64 {LSH, RSH, ARSH} BPF_K shift by 0 | Luke Nelson | 2019-07-03 | 1 | -57/+6 |
| | * | bpf, x32: Fix bug with ALU64 {LSH, RSH, ARSH} BPF_X shift by 0 | Luke Nelson | 2019-07-03 | 1 | -198/+23 |
* | | | Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net | David S. Miller | 2019-06-18 | 1 | -58/+22 |
|\| | |
|
| * | | Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net | Linus Torvalds | 2019-06-18 | 1 | -53/+21 |
| |\| |
|
| | * | bpf, x64: fix stack layout of JITed bpf code | Alexei Starovoitov | 2019-06-15 | 1 | -53/+21 |