This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch releases/gcc-15
in repository gcc.
from e14a895275d arm: fully validate mem_noofs_operand [PR120351]
new 08f932840a0 Regenerate gcc.pot
The 1 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:
gcc/po/gcc.pot | 11438 ++++++++++++++++++++++++++++---------------------------
1 file changed, 5765 insertions(+), 5673 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
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
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch release/2.41/master
in repository glibc.
from 373408c19f stdlib: resolve a double lock init issue after fork [BZ #32994]
new 62928cf7d8 elf: Do not add a copy of _dl_find_object to libc.so
new f48de98bce elf: Extract rtld_setup_phdr function from dl_main
new 513629b14d elf: Handle ld.so with LOAD segment gaps in _dl_find_object [...]
The 3 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:
NEWS | 1 +
elf/Makefile | 8 +-
elf/dl-find_object.c | 79 ++++++++++-------
elf/dl-find_object.h | 4 +-
elf/rtld.c | 82 ++++++++++++------
elf/tst-link-map-contiguous-ldso.c | 98 ++++++++++++++++++++++
elf/tst-link-map-contiguous-libc.c | 57 +++++++++++++
.../tst-link-map-contiguous-main.c | 40 +++++----
include/dlfcn.h | 3 +-
sysdeps/arm/find_exidx.c | 3 +-
10 files changed, 290 insertions(+), 85 deletions(-)
create mode 100644 elf/tst-link-map-contiguous-ldso.c
create mode 100644 elf/tst-link-map-contiguous-libc.c
copy sysdeps/pthread/tst-stack2.c => elf/tst-link-map-contiguous-main.c (61%)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 8b06c58c4ae cobol: Minor changes to quiet cppcheck warnings. [PR119324]
new 5b3f42dcae5 i386: Fix incorrect attributes-error.c test
The 1 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:
gcc/testsuite/gcc.target/i386/attributes-error.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository binutils-gdb.
from 393e0434e23 gprof: Run tst-gmon-gprof-l.sh after tst-gmon-gprof.sh
new 382f0ffb936 gdb/MAINTAINERS: Update my email address
The 1 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:
gdb/MAINTAINERS | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 08196f04401 PR modula2/121354: ICE when attempting to fold HIGH from an [...]
new 8b06c58c4ae cobol: Minor changes to quiet cppcheck warnings. [PR119324]
The 1 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:
gcc/cobol/cbldiag.h | 2 +-
gcc/cobol/genapi.cc | 5 +----
gcc/cobol/genutil.cc | 5 ++++-
gcc/cobol/symbols.cc | 10 ++++++----
4 files changed, 12 insertions(+), 10 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch release/2.42/master
in repository glibc.
from bc13db7393 inet-fortified: fix namespace violation (bug 33227)
new fd18059c0f stdlib: resolve a double lock init issue after fork [BZ #32994]
The 1 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:
NEWS | 2 +-
stdlib/abort.c | 6 +++++-
2 files changed, 6 insertions(+), 2 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch release/2.41/master
in repository glibc.
from e7c419a295 iconv: iconv -o should not create executable files (bug 33164)
new 373408c19f stdlib: resolve a double lock init issue after fork [BZ #32994]
The 1 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:
NEWS | 1 +
stdlib/abort.c | 6 +++++-
2 files changed, 6 insertions(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from db39ace3c1c fortran: Fix closing brace in comment
new 08196f04401 PR modula2/121354: ICE when attempting to fold HIGH from an [...]
The 1 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:
gcc/m2/gm2-compiler/M2GenGCC.mod | 51 ++++++++++++++++++++++++++--------------
1 file changed, 33 insertions(+), 18 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 39d429631ff Properly record SLP node when costing a vectorized store
new db39ace3c1c fortran: Fix closing brace in comment
The 1 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:
gcc/fortran/trans-decl.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.