Message ID | 20240813234307.82773-1-alexei.starovoitov@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 02f8ca3d49055788f112c17052a3da65feb01835 |
Headers | show |
Series | [GIT,PULL] bpf for v6.11-rc4 | expand |
Context | Check | Description |
---|---|---|
netdev/tree_selection | success | Pull request for net |
netdev/build_32bit | success | Errors and warnings before: 616 this patch: 603 |
netdev/build_tools | success | Errors and warnings before: 0 this patch: 0 |
netdev/build_clang | success | Errors and warnings before: 1106 this patch: 1093 |
netdev/verify_signedoff | fail | author Signed-off-by missing committer Signed-off-by missing |
netdev/verify_fixes | success | Fixes tag looks correct |
netdev/build_allmodconfig_warn | success | Errors and warnings before: 15242 this patch: 15229 |
netdev/build_clang_rust | success | No Rust files in patch. Skipping build |
netdev/kdoc | success | Errors and warnings before: 20 this patch: 20 |
netdev/contest | warning | net-next-2024-08-14--09-00 (tests: 708) |
The pull request you sent on Tue, 13 Aug 2024 16:43:07 -0700:
> git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git tags/bpf-6.11-rc4
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/02f8ca3d49055788f112c17052a3da65feb01835
Thank you!
Hello: This pull request was applied to bpf/bpf.git (master) by Linus Torvalds <torvalds@linux-foundation.org>: On Tue, 13 Aug 2024 16:43:07 -0700 you wrote: > Hi Linus, > > The following changes since commit d74da846046aeec9333e802f5918bd3261fb5509: > > Merge tag 'platform-drivers-x86-v6.11-3' of git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86 (2024-08-12 08:21:52 -0700) > > are available in the Git repository at: > > [...] Here is the summary with links: - [GIT,PULL] bpf for v6.11-rc4 https://git.kernel.org/bpf/bpf/c/02f8ca3d4905 You are awesome, thank you!
Hi Linus, The following changes since commit d74da846046aeec9333e802f5918bd3261fb5509: Merge tag 'platform-drivers-x86-v6.11-3' of git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86 (2024-08-12 08:21:52 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git tags/bpf-6.11-rc4 for you to fetch changes up to 100bff23818eb61751ed05d64a7df36ce9728a4d: perf/bpf: Don't call bpf_overflow_handler() for tracing events (2024-08-13 10:25:28 -0700) ---------------------------------------------------------------- - Fix bpftrace regression from Kyle Huey. Tracing bpf prog was called with perf_event input arguments causing bpftrace produce garbage output. - Fix verifier crash in stacksafe() from Yonghong Song. Daniel Hodges reported verifier crash when playing with sched-ext. The stack depth in the known verifier state was larger than stack depth in being explored state causing out-of-bounds access. - Fix update of freplace prog in prog_array from Leon Hwang. freplace prog type wasn't recognized correctly. Signed-off-by: Alexei Starovoitov <ast@kernel.org> ---------------------------------------------------------------- Kyle Huey (1): perf/bpf: Don't call bpf_overflow_handler() for tracing events Leon Hwang (1): bpf: Fix updating attached freplace prog in prog_array map Yonghong Song (2): bpf: Fix a kernel verifier crash in stacksafe() selftests/bpf: Add a test to verify previous stacksafe() fix include/linux/bpf_verifier.h | 4 +-- kernel/bpf/verifier.c | 5 +-- kernel/events/core.c | 3 +- tools/testing/selftests/bpf/progs/iters.c | 54 +++++++++++++++++++++++++++++++ 4 files changed, 61 insertions(+), 5 deletions(-)