forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'for-netdev' of https://git.kernel.org/pub/scm/linux/kernel…
…/git/bpf/bpf Daniel Borkmann says: ==================== pull-request: bpf 2024-04-26 We've added 12 non-merge commits during the last 22 day(s) which contain a total of 14 files changed, 168 insertions(+), 72 deletions(-). The main changes are: 1) Fix BPF_PROBE_MEM in verifier and JIT to skip loads from vsyscall page, from Puranjay Mohan. 2) Fix a crash in XDP with devmap broadcast redirect when the latter map is in process of being torn down, from Toke Høiland-Jørgensen. 3) Fix arm64 and riscv64 BPF JITs to properly clear start time for BPF program runtime stats, from Xu Kuohai. 4) Fix a sockmap KCSAN-reported data race in sk_psock_skb_ingress_enqueue, from Jason Xing. 5) Fix BPF verifier error message in resolve_pseudo_ldimm64, from Anton Protopopov. 6) Fix missing DEBUG_INFO_BTF_MODULES Kconfig menu item, from Andrii Nakryiko. * tag 'for-netdev' of https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf: selftests/bpf: Test PROBE_MEM of VSYSCALL_ADDR on x86-64 bpf, x86: Fix PROBE_MEM runtime load check bpf: verifier: prevent userspace memory access xdp: use flags field to disambiguate broadcast redirect arm32, bpf: Reimplement sign-extension mov instruction riscv, bpf: Fix incorrect runtime stats bpf, arm64: Fix incorrect runtime stats bpf: Fix a verifier verbose message bpf, skmsg: Fix NULL pointer dereference in sk_psock_skb_ingress_enqueue MAINTAINERS: bpf: Add Lehui and Puranjay as riscv64 reviewers MAINTAINERS: Update email address for Puranjay Mohan bpf, kconfig: Fix DEBUG_INFO_BTF_MODULES Kconfig definition ==================== Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jakub Kicinski <[email protected]>
- Loading branch information
Showing
14 changed files
with
168 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -512,6 +512,7 @@ Praveen BP <[email protected]> | |
Pradeep Kumar Chitrapu <[email protected]> <[email protected]> | ||
Prasad Sodagudi <[email protected]> <[email protected]> | ||
Punit Agrawal <[email protected]> <[email protected]> | ||
Puranjay Mohan <[email protected]> <[email protected]> | ||
Qais Yousef <[email protected]> <[email protected]> | ||
Qais Yousef <[email protected]> <[email protected]> | ||
Quentin Monnet <[email protected]> <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -553,7 +553,7 @@ F: Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml | |
F: drivers/input/misc/adxl34x.c | ||
|
||
ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER | ||
M: Puranjay Mohan <[email protected]> | ||
M: Puranjay Mohan <[email protected]> | ||
L: [email protected] | ||
S: Supported | ||
F: Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml | ||
|
@@ -3714,7 +3714,7 @@ F: drivers/iio/imu/bmi323/ | |
|
||
BPF JIT for ARM | ||
M: Russell King <[email protected]> | ||
M: Puranjay Mohan <[email protected]> | ||
M: Puranjay Mohan <[email protected]> | ||
L: [email protected] | ||
S: Maintained | ||
F: arch/arm/net/ | ||
|
@@ -3764,6 +3764,8 @@ X: arch/riscv/net/bpf_jit_comp64.c | |
|
||
BPF JIT for RISC-V (64-bit) | ||
M: Björn Töpel <[email protected]> | ||
R: Pu Lehui <[email protected]> | ||
R: Puranjay Mohan <[email protected]> | ||
L: [email protected] | ||
S: Maintained | ||
F: arch/riscv/net/ | ||
|
@@ -21925,7 +21927,7 @@ F: include/linux/soc/ti/ti_sci_inta_msi.h | |
F: include/linux/soc/ti/ti_sci_protocol.h | ||
|
||
TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER | ||
M: Puranjay Mohan <[email protected]> | ||
M: Puranjay Mohan <[email protected]> | ||
L: [email protected] | ||
S: Supported | ||
F: Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.