CVE & CISA-KEV Catalog

CVE-2024-26939

HIGH
7.0
CVSS v3
NVD

Description

In the Linux kernel, the following vulnerability has been resolved: drm/i915/vma: Fix UAF on destroy against retire race Object debugging tools were sporadically reporting illegal attempts to free a still active i915 VMA object when parking a GT believed to be idle. [161.359441] ODEBUG: free active (active state 0) object: ffff88811643b958 object type: i915_active hint: __i915_vma_active+0x0/0x50 [i915] [161.360082] WARNING: CPU: 5 PID: 276 at lib/debugobjects.c:514 debug_print_object+0x80/0xb0 ... [161.360304] CPU: 5 PID: 276 Comm: kworker/5:2 Not tainted 6.5.0-rc1-CI_DRM_13375-g003f860e5577+ #1 [161.360314] Hardware name: Intel Corporation Rocket Lake Client Platform/RocketLake S UDIMM 6L RVP, BIOS RKLSFWI1.R00.3173.A03.2204210138 04/21/2022 [161.360322] Workqueue: i915-unordered __intel_wakeref_put_work [i915] [161.360592] RIP: 0010:debug_print_object+0x80/0xb0 ... [161.361347] debug_object_free+0xeb/0x110 [161.361362] i915_active_fini+0x14/0x130 [i915] [161.361866] release_references+0xfe/0x1f0 [i915] [161.362543] i915_vma_parked+0x1db/0x380 [i915] [161.363129] __gt_park+0x121/0x230 [i915] [161.363515] ____intel_wakeref_put_last+0x1f/0x70 [i915] That has been tracked down to be happening when another thread is deactivating the VMA inside __active_retire() helper, after the VMA's active counter has been already decremented to 0, but before deactivation of the VMA's object is reported to the object debugging tool. We could prevent from that race by serializing i915_active_fini() with __active_retire() via ref->tree_lock, but that wouldn't stop the VMA from being used, e.g. from __i915_vma_retire() called at the end of __active_retire(), after that VMA has been already freed by a concurrent i915_vma_destroy() on return from the i915_active_fini(). Then, we should rather fix the issue at the VMA level, not in i915_active. Since __i915_vma_parked() is called from __gt_park() on last put of the GT's wakeref, the issue could be addressed by holding the GT wakeref long enough for __active_retire() to complete before that wakeref is released and the GT parked. I believe the issue was introduced by commit d93939730347 ("drm/i915: Remove the vma refcount") which moved a call to i915_active_fini() from a dropped i915_vma_release(), called on last put of the removed VMA kref, to i915_vma_parked() processing path called on last put of a GT wakeref. However, its visibility to the object debugging tool was suppressed by a bug in i915_active that was fixed two weeks later with commit e92eb246feb9 ("drm/i915/active: Fix missing debug object activation"). A VMA associated with a request doesn't acquire a GT wakeref by itself. Instead, it depends on a wakeref held directly by the request's active intel_context for a GT associated with its VM, and indirectly on that intel_context's engine wakeref if the engine belongs to the same GT as the VMA's VM. Those wakerefs are released asynchronously to VMA deactivation. Fix the issue by getting a wakeref for the VMA's GT when activating it, and putting that wakeref only after the VMA is deactivated. However, exclude global GTT from that processing path, otherwise the GPU never goes idle. Since __i915_vma_retire() may be called from atomic contexts, use async variant of wakeref put. Also, to avoid circular locking dependency, take care of acquiring the wakeref before VM mutex when both are needed. v7: Add inline comments with justifications for: - using untracked variants of intel_gt_pm_get/put() (Nirmoy), - using async variant of _put(), - not getting the wakeref in case of a global GTT, - always getting the first wakeref outside vm->mutex. v6: Since __i915_vma_active/retire() callbacks are not serialized, storing a wakeref tracking handle inside struct i915_vma is not safe, and there is no other good place for that. Use untracked variants of intel_gt_pm_get/put_async(). v5: Replace "tile" with "GT" across commit description (Rodrigo), - ---truncated---

How to fix

Remediation Available
linuxDebian
Fixed in:6.1.90-1CVE-2024-26939
Fixed in:6.8.9-1CVE-2024-26939
Fixed in:6.8.9-1CVE-2024-26939
bpftoolRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:7.3.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:7.3.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
bpftoolRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:7.3.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:7.3.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.74.1.el9_4RHSA-2025:9584
bpftool-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:7.3.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:7.3.0-427.74.1.el9_4RHSA-2025:9584
bpftool-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:7.3.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:7.3.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
kernelRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernelRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-64kRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-64kRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-64k-coreRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-64k-coreRocky
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debugRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-64k-debugRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-64k-debug-coreRocky
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debug-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debug-debuginfoRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-64k-debug-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-64k-debug-develRocky
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debug-develRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-64k-debug-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debug-devel-matchedRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-64k-debug-modulesRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-64k-debug-modulesRed Hat / RHEL
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debug-modules-coreRocky
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-64k-debug-modules-extraRocky
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debug-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-64k-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-64k-debuginfoRocky
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-develRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-64k-develRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-64k-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-devel-matchedRocky
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-modulesRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-64k-modulesRed Hat / RHEL
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-64k-modules-coreRocky
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-modules-extraRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-64k-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-abi-stablelistsRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-abi-stablelistsRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-coreRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-cross-headersRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-cross-headersRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debugRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debugRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-debug-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debug-coreRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-debug-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-debug-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debug-develRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-debug-develRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debug-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debug-devel-matchedRocky
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-debug-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-debug-modulesRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debug-modules-coreRocky
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debug-modules-extraRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-debug-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-debug-uki-virtRed Hat / RHEL
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debug-uki-virtRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-debuginfo-common-aarch64Red Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-debuginfo-common-aarch64Rocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debuginfo-common-ppc64leRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debuginfo-common-ppc64leRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debuginfo-common-s390xRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debuginfo-common-s390xRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debuginfo-common-x86_64Rocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-develRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-develRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-devel-matchedRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-docRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-docRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-headersRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-headersRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-modulesRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-modules-coreRocky
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-modules-extraRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-rtRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rtRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-rt-coreRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-debugRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-debugRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-rt-debug-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-rt-debug-coreRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-rt-debug-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-debug-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-debug-develRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-rt-debug-develRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-debug-kvmRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-rt-debug-kvmRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-rt-debug-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-rt-debug-modulesRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-debug-modules-coreRocky
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-rt-debug-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-debug-modules-extraRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-rt-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-rt-debuginfo-common-x86_64Rocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-develRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-rt-develRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-kvmRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-kvmRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-rt-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-rt-modulesRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-rt-modules-coreRocky
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-rt-modules-extraRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-toolsRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-toolsRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-tools-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-tools-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-tools-libsRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-tools-libsRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-tools-libs-develRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-tools-libs-develRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-uki-virtRocky
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-uki-virtRed Hat / RHEL
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-uki-virt-addonsRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-uki-virt-addonsRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-zfcpdumpRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-zfcpdumpRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-zfcpdump-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-zfcpdump-coreRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-zfcpdump-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-zfcpdump-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-zfcpdump-develRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-zfcpdump-develRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-zfcpdump-devel-matchedRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-zfcpdump-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-zfcpdump-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-zfcpdump-modulesRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-zfcpdump-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-zfcpdump-modules-coreRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-zfcpdump-modules-extraRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
kernel-zfcpdump-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
libperfRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
libperfRed Hat / RHEL
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
libperf-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
libperf-debuginfoRocky
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
perfRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
perfRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
perf-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
perf-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
python3-perfRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
python3-perfRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
python3-perf-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
python3-perf-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
rtlaRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
rtlaRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
rvRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
rvRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-427.74.1.el9_4RHSA-2025:9584
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
linuxUbuntu
Fixed in:6.8.0-35.35USN-6816-1
linux-awsUbuntu
Fixed in:6.8.0-1009.9USN-6817-1
linux-azureUbuntu
Fixed in:6.8.0-1008.8USN-6817-3
linux-gcpUbuntu
Fixed in:6.8.0-1008.9USN-6817-1
linux-gkeUbuntu
Fixed in:6.8.0-1004.7USN-6817-3
linux-ibmUbuntu
Fixed in:6.8.0-1006.6USN-6816-1
linux-image-6.8.0-1004-gkeUbuntu
Fixed in:6.8.0-1004.7USN-6817-3
linux-image-6.8.0-1005-raspiUbuntu
Fixed in:6.8.0-1005.5USN-6816-1
linux-image-6.8.0-1006-ibmUbuntu
Fixed in:6.8.0-1006.6USN-6816-1
linux-image-6.8.0-1006-oemUbuntu
Fixed in:6.8.0-1006.6USN-6817-2
linux-image-6.8.0-1006-oracleUbuntu
Fixed in:6.8.0-1006.6USN-6878-1
linux-image-6.8.0-1006-oracle-64kUbuntu
Fixed in:6.8.0-1006.6USN-6878-1
linux-image-6.8.0-1008-azureUbuntu
Fixed in:6.8.0-1008.8USN-6817-3
linux-image-6.8.0-1008-azure-fdeUbuntu
Fixed in:6.8.0-1008.8USN-6817-3
linux-image-6.8.0-1008-gcpUbuntu
Fixed in:6.8.0-1008.9USN-6817-1
linux-image-6.8.0-1009-awsUbuntu
Fixed in:6.8.0-1009.9USN-6817-1
linux-image-6.8.0-35-genericUbuntu
Fixed in:6.8.0-35.35+1USN-6816-1
linux-image-6.8.0-35-generic-64kUbuntu
Fixed in:6.8.0-35.35+1USN-6816-1
linux-image-6.8.0-35-lowlatencyUbuntu
Fixed in:6.8.0-35.35.1USN-6816-1
linux-image-6.8.0-35-lowlatency-64kUbuntu
Fixed in:6.8.0-35.35.1USN-6816-1
linux-image-awsUbuntu
Fixed in:6.8.0-1009.9USN-6817-1
linux-image-azureUbuntu
Fixed in:6.8.0-1008.8USN-6817-3
linux-image-azure-fdeUbuntu
Fixed in:6.8.0-1008.8USN-6817-3
linux-image-gcpUbuntu
Fixed in:6.8.0-1008.9USN-6817-1
linux-image-genericUbuntu
Fixed in:6.8.0-35.35USN-6816-1
linux-image-generic-64kUbuntu
Fixed in:6.8.0-35.35USN-6816-1
linux-image-generic-64k-hwe-24.04Ubuntu
Fixed in:6.8.0-35.35USN-6816-1
linux-image-generic-hwe-24.04Ubuntu
Fixed in:6.8.0-35.35USN-6816-1
linux-image-generic-lpaeUbuntu
Fixed in:6.8.0-35.35USN-6816-1
linux-image-gkeUbuntu
Fixed in:6.8.0-1004.7USN-6817-3
linux-image-ibmUbuntu
Fixed in:6.8.0-1006.6USN-6816-1
linux-image-ibm-classicUbuntu
Fixed in:6.8.0-1006.6USN-6816-1
linux-image-ibm-lts-24.04Ubuntu
Fixed in:6.8.0-1006.6USN-6816-1
linux-image-kvmUbuntu
Fixed in:6.8.0-35.35USN-6816-1
linux-image-lowlatencyUbuntu
Fixed in:6.8.0-35.35.1USN-6816-1
linux-image-lowlatency-64kUbuntu
Fixed in:6.8.0-35.35.1USN-6816-1
linux-image-oem-24.04Ubuntu
Fixed in:6.8.0-1006.6+1USN-6817-2
linux-image-oem-24.04aUbuntu
Fixed in:6.8.0-1006.6+1USN-6817-2
linux-image-oracleUbuntu
Fixed in:6.8.0-1006.6USN-6878-1
linux-image-oracle-64kUbuntu
Fixed in:6.8.0-1006.6USN-6878-1
linux-image-raspiUbuntu
Fixed in:6.8.0-1005.5USN-6816-1
linux-image-virtualUbuntu
Fixed in:6.8.0-35.35USN-6816-1
linux-image-virtual-hwe-24.04Ubuntu
Fixed in:6.8.0-35.35USN-6816-1
linux-lowlatencyUbuntu
Fixed in:6.8.0-35.35.1USN-6816-1
linux-oem-6.8Ubuntu
Fixed in:6.8.0-1006.6USN-6817-2
linux-oracleUbuntu
Fixed in:6.8.0-1006.6USN-6878-1
linux-raspiUbuntu
Fixed in:6.8.0-1005.5USN-6816-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 ComplexityHigh
Privileges RequiredLow
User InteractionNone
ScopeUnchanged

Impact

ConfidentialityHigh
IntegrityHigh
AvailabilityHigh

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

Exploit Intelligence

0.24%probability of exploitation in 30 days
15thpercentile

Low risk: more likely to be exploited than 15% 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-2024-26939
CVE-2024-26939 severity badge

Markdown

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

HTML

<a href="https://tridentstack.com/cve/CVE-2024-26939"><img src="https://tridentstack.com/cve/badge/CVE-2024-26939.svg" alt="CVE-2024-26939"></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-08.