You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
perf subsystem
About this tag
The perf subsystem is the Linux kernel's performance-monitoring and sampling infrastructure, handling interrupt handlers, per-task bookkeeping, and userland file descriptors via perf_event_open. A recent fix for CVE-2025-37747 addressed a race condition in the perf subsystem that could cause hosts to hang during sigtrap event teardown, a denial-of-service issue. This tag covers discussions about the perf subsystem's architecture, bugs, and security patches, particularly in enterprise and server environments where performance monitoring is critical. Topics include kernel fixes, race conditions, and safe teardown procedures for perf events.
Linux kernel maintainers closed a subtle but impactful race in the perf subsystem that could cause hosts to hang while freeing a sigtrap event, a denial‑of‑service condition tracked as CVE‑2025‑37747 and now fixed upstream and in many vendor kernels. Background
The Linux perf subsystem is the...