This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from 1cc41c88ef00 Merge tag 'nfs-for-6.18-3' of git://git.linux-nfs.org/proj [...] new fdf302e6bea1 gendwarfksyms: Skip files with no exports new a752782a2843 Merge tag 'rust-fixes-6.18-2' of git://git.kernel.org/pub/ [...] new 56b3c85e153b ftrace: Fix BPF fexit with livepatch new 3e9a18e1c3e9 ftrace: bpf: Fix IPMODIFY + DIRECT in modify_ftrace_direct() new 62d2d0a33839 selftests/bpf: Add tests for livepatch + bpf trampoline new 156c75f596c9 Merge branch 'fix-ftrace-for-livepatch-bpf-fexit-programs' new ea0714d61dea bpf:add _impl suffix for bpf_task_work_schedule* kfuncs new 137cc92ffe2e bpf: add _impl suffix for bpf_stream_vprintk() kfunc new 44e8f13f07cf Merge branch 'bpf-add-_impl-suffix-for-kfuncs-with-implicit-args' new 6d08340d1e35 Revert "perf/x86: Always store regs->ip in perf_callchain_ [...] new 20a0bc10272f x86/fgraph,bpf: Fix stack ORC unwind from kprobe_multi ret [...] new c9e208fa93cd selftests/bpf: Add stacktrace ips test for kprobe_multi/kr [...] new 3490d29964bd selftests/bpf: Add stacktrace ips test for raw_tp new e427054ae7bc Merge branch 'x86-fgraph-bpf-fix-orc-stack-unwind-from-ret [...] new fbade4bd08ba mptcp: Disallow MPTCP subflows from sockmap new c77b3b79a92e mptcp: Fix proto fallback detection with BPF new cb730e4ac1b4 selftests/bpf: Add mptcp test with sockmap new 91a78ce994e7 Merge branch 'mptcp-fix-conflicts-between-mptcp-and-sockmap' new 4ef927436258 bpf: Add bpf_prog_run_data_pointers() new b0c8e6d3d866 bpf: account for current allocated stack depth in widen_im [...] new 6c762611fed7 selftests/bpf: Test widen_imprecise_scalars() with differe [...] new cbba5d1b53fb Merge tag 'bpf-fixes' of git://git.kernel.org/pub/scm/linu [...] new 4495bffd86ba PCI/ASPM: Cache L0s/L1 Supported so advertised link states [...] new 575b98e39d81 PCI/ASPM: Add pcie_aspm_remove_cap() to override advertise [...] new 30579eebba6a PCI/ASPM: Convert quirks to override advertised link states new 5b40a5080c39 PCI/ASPM: Avoid L0s and L1 on Freescale [1957:0451] Root Ports new 823576c894d7 PCI/ASPM: Avoid L0s and L1 on PA Semi [1959:a002] Root Ports new 921b3f59b7b0 PCI/ASPM: Avoid L0s and L1 on Hi1105 [19e5:1105] Wi-Fi new 7a0892d2836e Merge tag 'pci-v6.18-fixes-5' of git://git.kernel.org/pub/ [...]
The 29 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: arch/x86/events/core.c | 10 +- arch/x86/include/asm/ftrace.h | 5 + arch/x86/kernel/ftrace_64.S | 8 +- drivers/pci/pci.h | 2 + drivers/pci/pcie/aspm.c | 25 ++-- drivers/pci/probe.c | 7 + drivers/pci/quirks.c | 42 +++--- include/linux/filter.h | 20 +++ include/linux/ftrace.h | 10 +- include/linux/pci.h | 2 + kernel/bpf/helpers.c | 26 ++-- kernel/bpf/stream.c | 3 +- kernel/bpf/trampoline.c | 5 - kernel/bpf/verifier.c | 18 +-- kernel/trace/ftrace.c | 60 ++++++--- net/mptcp/protocol.c | 6 +- net/mptcp/subflow.c | 8 ++ net/sched/act_bpf.c | 6 +- net/sched/cls_bpf.c | 6 +- scripts/gendwarfksyms/gendwarfksyms.c | 3 +- scripts/gendwarfksyms/gendwarfksyms.h | 2 +- scripts/gendwarfksyms/symbols.c | 4 +- tools/bpf/bpftool/Documentation/bpftool-prog.rst | 2 +- tools/lib/bpf/bpf_helpers.h | 28 ++-- tools/testing/selftests/bpf/config | 3 + .../bpf/prog_tests/livepatch_trampoline.c | 107 +++++++++++++++ tools/testing/selftests/bpf/prog_tests/mptcp.c | 140 +++++++++++++++++++ .../selftests/bpf/prog_tests/stacktrace_ips.c | 150 +++++++++++++++++++++ tools/testing/selftests/bpf/progs/iters_looping.c | 53 ++++++++ .../selftests/bpf/progs/livepatch_trampoline.c | 30 +++++ tools/testing/selftests/bpf/progs/mptcp_sockmap.c | 43 ++++++ tools/testing/selftests/bpf/progs/stacktrace_ips.c | 49 +++++++ tools/testing/selftests/bpf/progs/stream_fail.c | 6 +- tools/testing/selftests/bpf/progs/task_work.c | 6 +- tools/testing/selftests/bpf/progs/task_work_fail.c | 8 +- .../testing/selftests/bpf/progs/task_work_stress.c | 4 +- .../testing/selftests/bpf/test_kmods/bpf_testmod.c | 26 ++++ 37 files changed, 818 insertions(+), 115 deletions(-) create mode 100644 tools/testing/selftests/bpf/prog_tests/livepatch_trampoline.c create mode 100644 tools/testing/selftests/bpf/prog_tests/stacktrace_ips.c create mode 100644 tools/testing/selftests/bpf/progs/livepatch_trampoline.c create mode 100644 tools/testing/selftests/bpf/progs/mptcp_sockmap.c create mode 100644 tools/testing/selftests/bpf/progs/stacktrace_ips.c