This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from 89748acdf226 Merge tag 'drm-next-2025-08-01' of https://gitlab.freedesk [...] new 71753c6ed2bf unwind_user: Add user space unwinding API with frame point [...] new 5e32d0f15cc5 unwind_user/deferred: Add unwind_user_faultable() new b9c73524106e unwind_user/deferred: Add unwind cache new 2dffa355f6c2 unwind_user/deferred: Add deferred unwinding interface new 055c7060e7ca unwind_user/deferred: Make unwind deferral requests NMI-safe new be3d526a5b34 unwind deferred: Use bitmask to determine which callbacks to call new 4c75133e745a unwind deferred: Add unwind_completed mask to stop spuriou [...] new 858fa8a3b083 unwind: Add USED bit to only have one conditional on way b [...] new 357eda2d7450 unwind deferred: Use SRCU unwind_deferred_task_work() new b3b9cb11aa03 unwind: Finish up unwind when a task exits new c6439bfaabf2 Merge tag 'trace-deferred-unwind-v6.17' of git://git.kerne [...] new 8b6cbcac76af rtla/timerlat: Introduce enum timerlat_tracing_mode new 6ea082b171e0 rtla/timerlat: Add action on threshold feature new 3b78670e3a93 rtla/timerlat_bpf: Allow resuming tracing new 8d933d5c89e8 rtla/timerlat: Add continue action new 3aadb65db5d6 rtla/timerlat: Add action on end feature new 916a9c5b03a7 rtla/tests: Check rtla output with grep new 4e26f84abfbb rtla/tests: Add tests for actions new 04f837165b94 rtla/tests: Limit duration to maximum of 10s new 70165c78e31d Documentation/rtla: Add actions feature new 892ae5f806af rtla/tests: Add grep checks for base test cases new a80db1f85774 rtla/tests: Test timerlat -P option using actions new 5172a777248e Merge tag 'trace-tools-v6.17' of git://git.kernel.org/pub/ [...] new 88c79ecfb68f tracing: Replace opencoded cpumask_next_wrap() in move_to_ [...] new 3aceaa539cfe tracing: Use queue_rcu_work() to free filters new adc353c0bfb2 kernel: trace: preemptirq_delay_test: use offstack cpu mask new 878e1e94a8aa tracing/sched: Remove obsolete comment on suffixes new c897c1e5b19d tracing: Remove pointless memory barriers new 07c3f391bcb2 tracing: Remove EVENT_FILE_FL_SOFT_MODE flag new 502ffa43994d tracing: Fix comment in trace_module_remove_events() new 9ba817fb7c6a tracing: Deprecate auto-mounting tracefs in debugfs new 1a967e92bf47 tracing: Remove "__attribute__()" from the type field of e [...] new 0dd1274a053f tracing: Have eprobes have their own config option new 623526ba8984 Documentation: tracing: Add documentation about eprobes new d6f38c123963 Merge tag 'trace-v6.17' of git://git.kernel.org/pub/scm/li [...]
The 35 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: .../ABI/obsolete/automount-tracefs-debugfs | 20 ++ .../tools/rtla/common_timerlat_options.rst | 64 ++++ Documentation/trace/eprobetrace.rst | 269 +++++++++++++++ Documentation/trace/index.rst | 1 + MAINTAINERS | 7 + arch/Kconfig | 7 + include/asm-generic/Kbuild | 1 + include/asm-generic/unwind_user.h | 5 + include/linux/irq-entry-common.h | 2 + include/linux/sched.h | 5 + include/linux/trace_events.h | 3 - include/linux/unwind_deferred.h | 81 +++++ include/linux/unwind_deferred_types.h | 39 +++ include/linux/unwind_user.h | 14 + include/linux/unwind_user_types.h | 44 +++ include/trace/events/sched.h | 2 - kernel/Makefile | 1 + kernel/exit.c | 2 + kernel/fork.c | 4 + kernel/trace/Kconfig | 27 ++ kernel/trace/Makefile | 2 +- kernel/trace/preemptirq_delay_test.c | 13 +- kernel/trace/rv/rv.c | 6 - kernel/trace/trace.c | 49 +-- kernel/trace/trace.h | 4 +- kernel/trace/trace_events.c | 154 +++++++-- kernel/trace/trace_events_filter.c | 28 +- kernel/trace/trace_hwlat.c | 5 +- kernel/unwind/Makefile | 1 + kernel/unwind/deferred.c | 362 +++++++++++++++++++++ kernel/unwind/user.c | 128 ++++++++ tools/tracing/rtla/src/Build | 1 + tools/tracing/rtla/src/actions.c | 260 +++++++++++++++ tools/tracing/rtla/src/actions.h | 52 +++ tools/tracing/rtla/src/timerlat.bpf.c | 13 +- tools/tracing/rtla/src/timerlat.c | 24 +- tools/tracing/rtla/src/timerlat.h | 24 +- tools/tracing/rtla/src/timerlat_bpf.c | 13 + tools/tracing/rtla/src/timerlat_bpf.h | 3 + tools/tracing/rtla/src/timerlat_hist.c | 140 ++++++-- tools/tracing/rtla/src/timerlat_top.c | 165 +++++++--- tools/tracing/rtla/tests/engine.sh | 21 +- tools/tracing/rtla/tests/hwnoise.t | 13 +- tools/tracing/rtla/tests/osnoise.t | 10 +- tools/tracing/rtla/tests/scripts/check-priority.sh | 8 + tools/tracing/rtla/tests/timerlat.t | 45 ++- 46 files changed, 1933 insertions(+), 209 deletions(-) create mode 100644 Documentation/ABI/obsolete/automount-tracefs-debugfs create mode 100644 Documentation/trace/eprobetrace.rst create mode 100644 include/asm-generic/unwind_user.h create mode 100644 include/linux/unwind_deferred.h create mode 100644 include/linux/unwind_deferred_types.h create mode 100644 include/linux/unwind_user.h create mode 100644 include/linux/unwind_user_types.h create mode 100644 kernel/unwind/Makefile create mode 100644 kernel/unwind/deferred.c create mode 100644 kernel/unwind/user.c create mode 100644 tools/tracing/rtla/src/actions.c create mode 100644 tools/tracing/rtla/src/actions.h create mode 100755 tools/tracing/rtla/tests/scripts/check-priority.sh