CVE & CISA-KEV Catalog

CVE-2025-21693

HIGH
7.8
CVSS v3
NVD

Description

In the Linux kernel, the following vulnerability has been resolved: mm: zswap: properly synchronize freeing resources during CPU hotunplug In zswap_compress() and zswap_decompress(), the per-CPU acomp_ctx of the current CPU at the beginning of the operation is retrieved and used throughout. However, since neither preemption nor migration are disabled, it is possible that the operation continues on a different CPU. If the original CPU is hotunplugged while the acomp_ctx is still in use, we run into a UAF bug as some of the resources attached to the acomp_ctx are freed during hotunplug in zswap_cpu_comp_dead() (i.e. acomp_ctx.buffer, acomp_ctx.req, or acomp_ctx.acomp). The problem was introduced in commit 1ec3b5fe6eec ("mm/zswap: move to use crypto_acomp API for hardware acceleration") when the switch to the crypto_acomp API was made. Prior to that, the per-CPU crypto_comp was retrieved using get_cpu_ptr() which disables preemption and makes sure the CPU cannot go away from under us. Preemption cannot be disabled with the crypto_acomp API as a sleepable context is needed. Use the acomp_ctx.mutex to synchronize CPU hotplug callbacks allocating and freeing resources with compression/decompression paths. Make sure that acomp_ctx.req is NULL when the resources are freed. In the compression/decompression paths, check if acomp_ctx.req is NULL after acquiring the mutex (meaning the CPU was offlined) and retry on the new CPU. The initialization of acomp_ctx.mutex is moved from the CPU hotplug callback to the pool initialization where it belongs (where the mutex is allocated). In addition to adding clarity, this makes sure that CPU hotplug cannot reinitialize a mutex that is already locked by compression/decompression. Previously a fix was attempted by holding cpus_read_lock() [1]. This would have caused a potential deadlock as it is possible for code already holding the lock to fall into reclaim and enter zswap (causing a deadlock). A fix was also attempted using SRCU for synchronization, but Johannes pointed out that synchronize_srcu() cannot be used in CPU hotplug notifiers [2]. Alternative fixes that were considered/attempted and could have worked: - Refcounting the per-CPU acomp_ctx. This involves complexity in handling the race between the refcount dropping to zero in zswap_[de]compress() and the refcount being re-initialized when the CPU is onlined. - Disabling migration before getting the per-CPU acomp_ctx [3], but that's discouraged and is a much bigger hammer than needed, and could result in subtle performance issues. [1]https://lkml.kernel.org/[email protected]/ [2]https://lkml.kernel.org/[email protected]/ [3]https://lkml.kernel.org/[email protected]/ [[email protected]: remove comment]

How to fix

Remediation Available
linuxDebian
Fixed in:6.12.12-1CVE-2025-21693
Fixed in:6.12.12-1CVE-2025-21693
kernelRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernelRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64kRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64kRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-coreRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-coreRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-debugRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-debugRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-debug-coreRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-debug-coreRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-debug-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-debug-debuginfoRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-debug-develRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-debug-develRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-debug-devel-matchedRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-debug-devel-matchedRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-debug-modulesRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-debug-modulesRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-debug-modules-coreRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-debug-modules-coreRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-debug-modules-extraRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-debug-modules-extraRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-debuginfoRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-develRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-develRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-devel-matchedRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-devel-matchedRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-modulesRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-modulesRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-modules-coreRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-modules-coreRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-modules-extraRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-64k-modules-extraRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-abi-stablelistsRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-abi-stablelistsRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-coreRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-coreRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debugRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debugRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debug-coreRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debug-coreRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debug-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debug-debuginfoRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debug-develRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debug-develRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debug-devel-matchedRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debug-devel-matchedRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debug-modulesRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debug-modulesRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debug-modules-coreRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debug-modules-coreRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debug-modules-extraRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debug-modules-extraRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debug-uki-virtRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debug-uki-virtRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debuginfoRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debuginfo-common-aarch64Red Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debuginfo-common-aarch64Rocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debuginfo-common-ppc64leRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debuginfo-common-ppc64leRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debuginfo-common-s390xRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debuginfo-common-s390xRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-debuginfo-common-x86_64Rocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-develRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-develRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-devel-matchedRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-devel-matchedRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-docRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-docRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-modulesRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-modulesRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-modules-coreRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-modules-coreRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-modules-extraRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-modules-extraRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-modules-extra-matchedRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
kernel-modules-extra-matchedRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
kernel-rtRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rtRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64kRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64kRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-coreRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-coreRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-debugRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-debugRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-debug-coreRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-debug-coreRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-debug-debuginfoRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-debug-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-debug-develRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-debug-develRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-debug-modulesRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-debug-modulesRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-debug-modules-coreRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-debug-modules-coreRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-debug-modules-extraRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-debug-modules-extraRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-debuginfoRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-develRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-develRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-modulesRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-modulesRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-modules-coreRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-modules-coreRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-modules-extraRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-64k-modules-extraRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-coreRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-coreRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-debugRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-debugRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-debug-coreRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-debug-coreRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-debug-debuginfoRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-debug-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-debug-develRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-debug-develRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-debug-modulesRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-debug-modulesRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-debug-modules-coreRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-debug-modules-coreRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-debug-modules-extraRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-debug-modules-extraRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-debuginfoRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-develRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-develRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-modulesRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-modulesRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-modules-coreRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-modules-coreRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-modules-extraRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-rt-modules-extraRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-toolsRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-toolsRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-tools-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-tools-debuginfoRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-tools-libsRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-tools-libsRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-tools-libs-develRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-tools-libs-develRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-uki-virtRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-uki-virtRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-uki-virt-addonsRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-uki-virt-addonsRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-zfcpdumpRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-zfcpdumpRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-zfcpdump-coreRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-zfcpdump-coreRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-zfcpdump-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-zfcpdump-debuginfoRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-zfcpdump-develRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-zfcpdump-develRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-zfcpdump-devel-matchedRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-zfcpdump-devel-matchedRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-zfcpdump-modulesRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-zfcpdump-modulesRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-zfcpdump-modules-coreRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-zfcpdump-modules-coreRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-zfcpdump-modules-extraRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
kernel-zfcpdump-modules-extraRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
libperfRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
libperfRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
libperf-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
libperf-debuginfoRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
perfRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
perfRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
perf-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
perf-debuginfoRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
python3-perfRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
python3-perfRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
python3-perf-debuginfoRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
python3-perf-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
rtlaRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
rtlaRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
rvRocky
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
rvRed Hat / RHEL
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:6.12.0-124.8.1.el10_1RHSA-2025:20095
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
Fixed in:0:5.14.0-611.5.1.el9_7RHSA-2025:20518
linux-azure-6.11Ubuntu
Fixed in:6.11.0-1013.13~24.04.1USN-7448-1
linux-hwe-6.11Ubuntu
Fixed in:6.11.0-24.24~24.04.1USN-7445-1
linux-image-6.11.0-1012-lowlatencyUbuntu
Fixed in:6.11.0-1012.13~24.04.1USN-7445-1
linux-image-6.11.0-1012-lowlatency-64kUbuntu
Fixed in:6.11.0-1012.13~24.04.1USN-7445-1
linux-image-6.11.0-1013-azureUbuntu
Fixed in:6.11.0-1013.13~24.04.1USN-7448-1
linux-image-6.11.0-1013-azure-fdeUbuntu
Fixed in:6.11.0-1013.13~24.04.1USN-7448-1
linux-image-6.11.0-1020-oemUbuntu
Fixed in:6.11.0-1020.20USN-7445-1
linux-image-6.11.0-24-genericUbuntu
Fixed in:6.11.0-24.24~24.04.1USN-7445-1
linux-image-6.11.0-24-generic-64kUbuntu
Fixed in:6.11.0-24.24~24.04.1USN-7445-1
linux-image-azureUbuntu
Fixed in:6.11.0-1013.13~24.04.1USN-7448-1
linux-image-azure-fdeUbuntu
Fixed in:6.11.0-1013.13~24.04.1USN-7448-1
linux-image-generic-64k-hwe-24.04Ubuntu
Fixed in:6.11.0-24.24~24.04.1USN-7445-1
linux-image-generic-hwe-24.04Ubuntu
Fixed in:6.11.0-24.24~24.04.1USN-7445-1
linux-image-lowlatency-64k-hwe-24.04Ubuntu
Fixed in:6.11.0-1012.13~24.04.1USN-7445-1
linux-image-lowlatency-hwe-24.04Ubuntu
Fixed in:6.11.0-1012.13~24.04.1USN-7445-1
linux-image-oem-24.04bUbuntu
Fixed in:6.11.0-1020.20USN-7445-1
linux-image-virtual-hwe-24.04Ubuntu
Fixed in:6.11.0-24.24~24.04.1USN-7445-1
linux-lowlatency-hwe-6.11Ubuntu
Fixed in:6.11.0-1012.13~24.04.1USN-7445-1
linux-oem-6.11Ubuntu
Fixed in:6.11.0-1020.20USN-7445-1

Remediation is compiled from vendor and distribution security advisories. Always confirm against the linked source for your exact version and platform.

CVSS v3 Vector

Exploitability

Attack VectorLocal
Attack ComplexityLow
Privileges RequiredLow
User InteractionNone
ScopeUnchanged

Impact

ConfidentialityHigh
IntegrityHigh
AvailabilityHigh

CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H

Exploit Intelligence

0.19%probability of exploitation in 30 days
9thpercentile

Low risk: more likely to be exploited than 9% of all known CVEs.

References

Related Vulnerabilities

Other CWE-416 (Use After Free) vulnerabilities, ordered by exploit likelihood. View all

CVESeverityCVSSEPSSExploitedFix
CVE-2019-0708Critical9.8100%KEV + Ransom-
CVE-2021-31166Critical9.8100%KEVFix
CVE-2015-5119Critical9.899%KEV-
CVE-2010-3962High8.197%KEV-
CVE-2015-0313Critical9.896%KEVFix
CVE-2017-9798High7.595%-Fix
Embed a live status badge for CVE-2025-21693
CVE-2025-21693 severity badge

Markdown

[![CVE-2025-21693](https://tridentstack.com/cve/badge/CVE-2025-21693.svg)](https://tridentstack.com/cve/CVE-2025-21693)

HTML

<a href="https://tridentstack.com/cve/CVE-2025-21693"><img src="https://tridentstack.com/cve/badge/CVE-2025-21693.svg" alt="CVE-2025-21693"></a>

Find and fix vulnerabilities across your fleet

TridentStack Control continuously scans your Windows, macOS, and Linux fleet for known vulnerabilities, prioritizes them by severity and active exploitation, and patches them automatically.

Start free

This product uses NVD data but is not endorsed or certified by the NVD. EPSS scores courtesy of FIRST.org (https://www.first.org/epss). Source: CISA KEV Catalog. Data as of 2025-04-16.