index
:
linux-arm.git
aarch64/hotplug-vcpu/head
aarch64/hotplug-vcpu/v6.5
aarch64/hotplug-vcpu/v6.6
aarch64/hotplug-vcpu/v6.6-rc1
aarch64/hotplug-vcpu/v6.6-rc5
aarch64/hotplug-vcpu/v6.6-rc6
aarch64/hotplug-vcpu/v6.6-rc7
aarch64/hotplug-vcpu/v6.7
aarch64/hotplug-vcpu/v6.7-rc1
aarch64/hotplug-vcpu/v6.7-rc2
aarch64/hotplug-vcpu/v6.7-rc3
aarch64/hotplug-vcpu/v6.7-rc4
aarch64/hotplug-vcpu/v6.7-rc5
aarch64/hotplug-vcpu/v6.8-rc2
aarch64/ktext/head
aarch64/ktext/v6.5
aarch64/ktext/v6.6-rc5
aarch64/ktext/v6.7
adfs
cex7
clearfog
clearfog-4.10
clearfog-4.11
clearfog-4.12
clearfog-4.13
clearfog-4.9
clkdev
csi-v6
devel-stable
drm-armada-devel
drm-armada-devel-4.15
drm-armada-fixes
drm-armada-fixes-4.15
drm-dwhdmi-devel
drm-etnaviv-devel
drm-tda9950-fixes
drm-tda998x-devel
drm-tda998x-fixes
fec-testing
fiq
fixes
fixes-sa1111
for-arm-soc
for-next
hb2
ktext
ktext-current
master
mcbin
mvneta
mvpp2
net-merged
net-next
net-queue
nmi
phy
rtc
sa1100
spectre
to-build
uaccess
vcpu-rmk
wl18xx
zii
Russell King's ARM Linux kernel tree
Russell King
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
kernel
/
bpf
/
verifier.c
Age
Commit message (
Expand
)
Author
2023-11-24
bpf: Validate global subprogs lazily
Andrii Nakryiko
2023-11-24
bpf: Emit global subprog name in verifier logs
Andrii Nakryiko
2023-11-23
Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net
Jakub Kicinski
2023-11-21
Merge tag 'for-netdev' of https://git.kernel.org/pub/scm/linux/kernel/git/bpf...
Jakub Kicinski
2023-11-20
bpf: keep track of max number of bpf_loop callback iterations
Eduard Zingerman
2023-11-20
bpf: widening for callback iterators
Eduard Zingerman
2023-11-20
bpf: verify callbacks as if they are called unknown number of times
Eduard Zingerman
2023-11-20
bpf: extract setup_func_entry() utility function
Eduard Zingerman
2023-11-20
bpf: extract __check_reg_arg() utility function
Eduard Zingerman
2023-11-18
bpf: move verifier state printing code to kernel/bpf/log.c
Andrii Nakryiko
2023-11-18
bpf: move verbose_linfo() into kernel/bpf/log.c
Andrii Nakryiko
2023-11-17
bpf: rename BPF_F_TEST_SANITY_STRICT to BPF_F_TEST_REG_INVARIANTS
Andrii Nakryiko
2023-11-15
bpf: make __reg{32,64}_deduce_bounds logic more robust
Andrii Nakryiko
2023-11-15
bpf: remove redundant s{32,64} -> u{32,64} deduction logic
Andrii Nakryiko
2023-11-15
bpf: add register bounds sanity checks and sanitization
Andrii Nakryiko
2023-11-15
bpf: enhance BPF_JEQ/BPF_JNE is_branch_taken logic
Andrii Nakryiko
2023-11-15
bpf: generalize is_scalar_branch_taken() logic
Andrii Nakryiko
2023-11-15
bpf: generalize reg_set_min_max() to handle non-const register comparisons
Andrii Nakryiko
2023-11-15
bpf: Do not allocate percpu memory at init stage
Yonghong Song
2023-11-09
bpf: fix control-flow graph checking in privileged mode
Andrii Nakryiko
2023-11-09
bpf: fix precision backtracking instruction iteration
Andrii Nakryiko
2023-11-09
bpf: handle ldimm64 properly in check_cfg()
Andrii Nakryiko
2023-11-09
bpf: Mark direct ld of stashed bpf_{rb,list}_node as non-owning ref
Dave Marchevsky
2023-11-09
bpf: replace register_is_const() with is_reg_const()
Shung-Hsi Yu
2023-11-09
bpf: Introduce KF_ARG_PTR_TO_CONST_STR
Song Liu
2023-11-09
bpf: Factor out helper check_reg_const_str()
Song Liu
2023-11-09
bpf: generalize reg_set_min_max() to handle two sets of two registers
Andrii Nakryiko
2023-11-09
bpf: prepare reg_set_min_max for second set of registers
Andrii Nakryiko
2023-11-09
bpf: unify 32-bit and 64-bit is_branch_taken logic
Andrii Nakryiko
2023-11-09
bpf: generalize is_branch_taken to handle all conditional jumps in one place
Andrii Nakryiko
2023-11-09
bpf: move is_branch_taken() down
Andrii Nakryiko
2023-11-09
bpf: generalize is_branch_taken() to work with two registers
Andrii Nakryiko
2023-11-09
bpf: rename is_branch_taken reg arguments to prepare for the second one
Andrii Nakryiko
2023-11-09
bpf: drop knowledge-losing __reg_combine_{32,64}_into_{64,32} logic
Andrii Nakryiko
2023-11-09
bpf: try harder to deduce register bounds from different numeric domains
Andrii Nakryiko
2023-11-09
bpf: improve deduction of 64-bit bounds from 32-bit bounds
Andrii Nakryiko
2023-11-09
bpf: add special smin32/smax32 derivation from 64-bit bounds
Andrii Nakryiko
2023-11-09
bpf: derive subreg bounds from full bounds when upper 32 bits are constant
Andrii Nakryiko
2023-11-09
bpf: derive smin32/smax32 from umin32/umax32 bounds
Andrii Nakryiko
2023-11-09
bpf: derive smin/smax from umin/max bounds
Andrii Nakryiko
2023-11-01
bpf: Fix precision tracking for BPF_ALU | BPF_TO_BE | BPF_END
Shung-Hsi Yu
2023-11-01
bpf: Relax allowlist for css_task iter
Chuyi Zhou
2023-11-01
bpf: Fix check_stack_write_fixed_off() to correctly spill imm
Hao Sun
2023-11-01
bpf: fix compilation error without CGROUPS
Matthieu Baerts
2023-10-24
bpf: Improve JEQ/JNE branch taken logic
Andrii Nakryiko
2023-10-23
bpf: print full verifier states on infinite loop detection
Eduard Zingerman
2023-10-23
bpf: correct loop detection for iterators convergence
Eduard Zingerman
2023-10-23
bpf: exact states comparison for iterator convergence checks
Eduard Zingerman
2023-10-23
bpf: extract same_callsites() as utility function
Eduard Zingerman
2023-10-23
bpf: move explored_state() closer to the beginning of verifier.c
Eduard Zingerman
[next]