CVE & CISA-KEV Catalog

CVE-2024-58088

MEDIUM
5.5
CVSS v3
NVD

Description

In the Linux kernel, the following vulnerability has been resolved: bpf: Fix deadlock when freeing cgroup storage The following commit bc235cdb423a ("bpf: Prevent deadlock from recursive bpf_task_storage_[get|delete]") first introduced deadlock prevention for fentry/fexit programs attaching on bpf_task_storage helpers. That commit also employed the logic in map free path in its v6 version. Later bpf_cgrp_storage was first introduced in c4bcfb38a95e ("bpf: Implement cgroup storage available to non-cgroup-attached bpf progs") which faces the same issue as bpf_task_storage, instead of its busy counter, NULL was passed to bpf_local_storage_map_free() which opened a window to cause deadlock: <TASK> (acquiring local_storage->lock) _raw_spin_lock_irqsave+0x3d/0x50 bpf_local_storage_update+0xd1/0x460 bpf_cgrp_storage_get+0x109/0x130 bpf_prog_a4d4a370ba857314_cgrp_ptr+0x139/0x170 ? __bpf_prog_enter_recur+0x16/0x80 bpf_trampoline_6442485186+0x43/0xa4 cgroup_storage_ptr+0x9/0x20 (holding local_storage->lock) bpf_selem_unlink_storage_nolock.constprop.0+0x135/0x160 bpf_selem_unlink_storage+0x6f/0x110 bpf_local_storage_map_free+0xa2/0x110 bpf_map_free_deferred+0x5b/0x90 process_one_work+0x17c/0x390 worker_thread+0x251/0x360 kthread+0xd2/0x100 ret_from_fork+0x34/0x50 ret_from_fork_asm+0x1a/0x30 </TASK> Progs: - A: SEC("fentry/cgroup_storage_ptr") - cgid (BPF_MAP_TYPE_HASH) Record the id of the cgroup the current task belonging to in this hash map, using the address of the cgroup as the map key. - cgrpa (BPF_MAP_TYPE_CGRP_STORAGE) If current task is a kworker, lookup the above hash map using function parameter @owner as the key to get its corresponding cgroup id which is then used to get a trusted pointer to the cgroup through bpf_cgroup_from_id(). This trusted pointer can then be passed to bpf_cgrp_storage_get() to finally trigger the deadlock issue. - B: SEC("tp_btf/sys_enter") - cgrpb (BPF_MAP_TYPE_CGRP_STORAGE) The only purpose of this prog is to fill Prog A's hash map by calling bpf_cgrp_storage_get() for as many userspace tasks as possible. Steps to reproduce: - Run A; - while (true) { Run B; Destroy B; } Fix this issue by passing its busy counter to the free procedure so it can be properly incremented before storage/smap locking.

How to fix

Remediation Available
linuxDebian
Fixed in:6.12.17-1CVE-2024-58088
Fixed in:6.12.17-1CVE-2024-58088
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
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
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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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
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
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
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-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
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
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-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
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
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
linuxUbuntu
Fixed in:6.8.0-78.78USN-7703-1
linux-awsUbuntu
Fixed in:6.8.0-1035.37USN-7703-1
linux-aws-6.8Ubuntu
Fixed in:6.8.0-1035.37~22.04.1USN-7703-2
linux-azureUbuntu
Fixed in:6.8.0-1034.39USN-7737-1
linux-azure-6.11Ubuntu
Fixed in:6.11.0-1015.15~24.04.1USN-7521-1
linux-azure-6.8Ubuntu
Fixed in:6.8.0-1034.39~22.04.1USN-7737-1
linux-azure-nvidiaUbuntu
Fixed in:6.8.0-1022.23USN-7737-1
linux-gcpUbuntu
Fixed in:6.8.0-1036.38USN-7703-2
linux-gcp-6.11Ubuntu
Fixed in:6.11.0-1015.15~24.04.1USN-7521-1
linux-gcp-6.8Ubuntu
Fixed in:6.8.0-1036.38~22.04.1USN-7703-2
linux-gkeUbuntu
Fixed in:6.8.0-1032.36USN-7703-4
linux-gkeopUbuntu
Fixed in:6.8.0-1019.21USN-7703-2
linux-hwe-6.11Ubuntu
Fixed in:6.11.0-26.26~24.04.1USN-7521-1
linux-hwe-6.8Ubuntu
Fixed in:6.8.0-78.78~22.04.1USN-7703-4
linux-ibmUbuntu
Fixed in:6.8.0-1033.33USN-7703-2
linux-ibm-6.8Ubuntu
Fixed in:6.8.0-1033.33~22.04.1USN-7703-2
linux-image-6.11.0-1014-lowlatencyUbuntu
Fixed in:6.11.0-1014.15~24.04.1USN-7521-3
linux-image-6.11.0-1014-lowlatency-64kUbuntu
Fixed in:6.11.0-1014.15~24.04.1USN-7521-3
linux-image-6.11.0-1015-azureUbuntu
Fixed in:6.11.0-1015.15~24.04.1USN-7521-1
linux-image-6.11.0-1015-azure-fdeUbuntu
Fixed in:6.11.0-1015.15~24.04.1USN-7521-1
linux-image-6.11.0-1015-gcpUbuntu
Fixed in:6.11.0-1015.15~24.04.1USN-7521-1
linux-image-6.11.0-1015-gcp-64kUbuntu
Fixed in:6.11.0-1015.15~24.04.1USN-7521-1
linux-image-6.11.0-1022-oemUbuntu
Fixed in:6.11.0-1022.22USN-7521-1
linux-image-6.11.0-26-genericUbuntu
Fixed in:6.11.0-26.26~24.04.1USN-7521-1
linux-image-6.11.0-26-generic-64kUbuntu
Fixed in:6.11.0-26.26~24.04.1USN-7521-1
linux-image-6.8.0-1019-gkeopUbuntu
Fixed in:6.8.0-1019.21USN-7703-2
linux-image-6.8.0-1022-azure-nvidiaUbuntu
Fixed in:6.8.0-1022.23USN-7737-1
linux-image-6.8.0-1032-gkeUbuntu
Fixed in:6.8.0-1032.36USN-7703-4
linux-image-6.8.0-1032-oracleUbuntu
Fixed in:6.8.0-1032.33~22.04.1USN-7703-3
Fixed in:6.8.0-1032.33USN-7703-3
linux-image-6.8.0-1032-oracle-64kUbuntu
Fixed in:6.8.0-1032.33~22.04.1USN-7703-3
Fixed in:6.8.0-1032.33USN-7703-3
linux-image-6.8.0-1033-ibmUbuntu
Fixed in:6.8.0-1033.33~22.04.1USN-7703-2
Fixed in:6.8.0-1033.33USN-7703-2
linux-image-6.8.0-1034-azureUbuntu
Fixed in:6.8.0-1034.39~22.04.1USN-7737-1
Fixed in:6.8.0-1034.39USN-7737-1
linux-image-6.8.0-1034-azure-fdeUbuntu
Fixed in:6.8.0-1034.39~22.04.1USN-7737-1
Fixed in:6.8.0-1034.39USN-7737-1
linux-image-6.8.0-1035-awsUbuntu
Fixed in:6.8.0-1035.37~22.04.1USN-7703-2
Fixed in:6.8.0-1035.37USN-7703-1
linux-image-6.8.0-1035-aws-64kUbuntu
Fixed in:6.8.0-1035.37~22.04.1USN-7703-2
Fixed in:6.8.0-1035.37USN-7703-1
linux-image-6.8.0-1035-nvidiaUbuntu
Fixed in:6.8.0-1035.38~22.04.1USN-7703-4
Fixed in:6.8.0-1035.38USN-7703-4
linux-image-6.8.0-1035-nvidia-64kUbuntu
Fixed in:6.8.0-1035.38~22.04.1USN-7703-4
Fixed in:6.8.0-1035.38USN-7703-4
linux-image-6.8.0-1035-nvidia-lowlatencyUbuntu
Fixed in:6.8.0-1035.38.1USN-7703-4
linux-image-6.8.0-1035-nvidia-lowlatency-64kUbuntu
Fixed in:6.8.0-1035.38.1USN-7703-4
linux-image-6.8.0-1035-raspiUbuntu
Fixed in:6.8.0-1035.39USN-7703-4
linux-image-6.8.0-1036-gcpUbuntu
Fixed in:6.8.0-1036.38~22.04.1USN-7703-2
Fixed in:6.8.0-1036.38USN-7703-2
linux-image-6.8.0-1036-gcp-64kUbuntu
Fixed in:6.8.0-1036.38~22.04.1USN-7703-2
Fixed in:6.8.0-1036.38USN-7703-2
linux-image-6.8.0-2028-raspi-realtimeUbuntu
Fixed in:6.8.0-2028.29USN-7719-1
linux-image-6.8.0-78-genericUbuntu
Fixed in:6.8.0-78.78~22.04.1USN-7703-4
Fixed in:6.8.0-78.78USN-7703-1
linux-image-6.8.0-78-generic-64kUbuntu
Fixed in:6.8.0-78.78~22.04.1USN-7703-4
Fixed in:6.8.0-78.78USN-7703-1
linux-image-6.8.0-78-lowlatencyUbuntu
Fixed in:6.8.0-78.78.1~22.04.1USN-7703-1
Fixed in:6.8.0-78.78.1USN-7703-1
linux-image-6.8.0-78-lowlatency-64kUbuntu
Fixed in:6.8.0-78.78.1~22.04.1USN-7703-1
Fixed in:6.8.0-78.78.1USN-7703-1
linux-image-6.8.1-1030-realtimeUbuntu
Fixed in:6.8.1-1030.31USN-7703-1
linux-image-awsUbuntu
Fixed in:6.8.0-1035.37~22.04.1USN-7703-2
linux-image-aws-6.8Ubuntu
Fixed in:6.8.0-1035.37~22.04.1USN-7703-2
Fixed in:6.8.0-1035.37USN-7703-1
linux-image-aws-64kUbuntu
Fixed in:6.8.0-1035.37~22.04.1USN-7703-2
linux-image-aws-64k-6.8Ubuntu
Fixed in:6.8.0-1035.37~22.04.1USN-7703-2
Fixed in:6.8.0-1035.37USN-7703-1
linux-image-aws-64k-lts-24.04Ubuntu
Fixed in:6.8.0-1035.37USN-7703-1
linux-image-aws-lts-24.04Ubuntu
Fixed in:6.8.0-1035.37USN-7703-1
linux-image-azureUbuntu
Fixed in:6.8.0-1034.39~22.04.1USN-7737-1
Fixed in:6.11.0-1015.15~24.04.1USN-7521-1
linux-image-azure-6.8Ubuntu
Fixed in:6.8.0-1034.39~22.04.1USN-7737-1
Fixed in:6.8.0-1034.39USN-7737-1
linux-image-azure-fdeUbuntu
Fixed in:6.8.0-1034.39~22.04.1USN-7737-1
Fixed in:6.11.0-1015.15~24.04.1USN-7521-1
linux-image-azure-fde-6.8Ubuntu
Fixed in:6.8.0-1034.39~22.04.1USN-7737-1
Fixed in:6.8.0-1034.39USN-7737-1
linux-image-azure-fde-lts-24.04Ubuntu
Fixed in:6.8.0-1034.39USN-7737-1
linux-image-azure-lts-24.04Ubuntu
Fixed in:6.8.0-1034.39USN-7737-1
linux-image-azure-nvidiaUbuntu
Fixed in:6.8.0-1022.23USN-7737-1
linux-image-azure-nvidia-6.8Ubuntu
Fixed in:6.8.0-1022.23USN-7737-1
linux-image-azure-nvidia-lts-24.04Ubuntu
Fixed in:6.8.0-1022.23USN-7737-1
linux-image-gcpUbuntu
Fixed in:6.8.0-1036.38~22.04.1USN-7703-2
Fixed in:6.11.0-1015.15~24.04.1USN-7521-1
linux-image-gcp-6.8Ubuntu
Fixed in:6.8.0-1036.38~22.04.1USN-7703-2
Fixed in:6.8.0-1036.38USN-7703-2
linux-image-gcp-64kUbuntu
Fixed in:6.8.0-1036.38~22.04.1USN-7703-2
Fixed in:6.11.0-1015.15~24.04.1USN-7521-1
linux-image-gcp-64k-6.8Ubuntu
Fixed in:6.8.0-1036.38~22.04.1USN-7703-2
Fixed in:6.8.0-1036.38USN-7703-2
linux-image-gcp-64k-lts-24.04Ubuntu
Fixed in:6.8.0-1036.38USN-7703-2
linux-image-gcp-lts-24.04Ubuntu
Fixed in:6.8.0-1036.38USN-7703-2
linux-image-genericUbuntu
Fixed in:6.8.0-78.78USN-7703-1
linux-image-generic-6.8Ubuntu
Fixed in:6.8.0-78.78~22.04.1USN-7703-4
Fixed in:6.8.0-78.78USN-7703-1
linux-image-generic-64kUbuntu
Fixed in:6.8.0-78.78USN-7703-1
linux-image-generic-64k-6.8Ubuntu
Fixed in:6.8.0-78.78~22.04.1USN-7703-4
Fixed in:6.8.0-78.78USN-7703-1
linux-image-generic-64k-hwe-22.04Ubuntu
Fixed in:6.8.0-78.78~22.04.1USN-7703-4
linux-image-generic-64k-hwe-24.04Ubuntu
Fixed in:6.11.0-26.26~24.04.1USN-7521-1
linux-image-generic-hwe-22.04Ubuntu
Fixed in:6.8.0-78.78~22.04.1USN-7703-4
linux-image-generic-hwe-24.04Ubuntu
Fixed in:6.11.0-26.26~24.04.1USN-7521-1
linux-image-generic-lpaeUbuntu
Fixed in:6.8.0-78.78USN-7703-1
linux-image-gkeUbuntu
Fixed in:6.8.0-1032.36USN-7703-4
linux-image-gke-6.8Ubuntu
Fixed in:6.8.0-1032.36USN-7703-4
linux-image-gkeopUbuntu
Fixed in:6.8.0-1019.21USN-7703-2
linux-image-gkeop-6.8Ubuntu
Fixed in:6.8.0-1019.21USN-7703-2
linux-image-ibmUbuntu
Fixed in:6.8.0-1033.33USN-7703-2
linux-image-ibm-6.8Ubuntu
Fixed in:6.8.0-1033.33~22.04.1USN-7703-2
Fixed in:6.8.0-1033.33USN-7703-2
linux-image-ibm-classicUbuntu
Fixed in:6.8.0-1033.33USN-7703-2
linux-image-ibm-lts-24.04Ubuntu
Fixed in:6.8.0-1033.33USN-7703-2
linux-image-kvmUbuntu
Fixed in:6.8.0-78.78USN-7703-1
linux-image-lowlatencyUbuntu
Fixed in:6.8.0-78.78.1USN-7703-1
linux-image-lowlatency-6.8Ubuntu
Fixed in:6.8.0-78.78.1~22.04.1USN-7703-1
Fixed in:6.8.0-78.78.1USN-7703-1
linux-image-lowlatency-64kUbuntu
Fixed in:6.8.0-78.78.1USN-7703-1
linux-image-lowlatency-64k-6.8Ubuntu
Fixed in:6.8.0-78.78.1~22.04.1USN-7703-1
Fixed in:6.8.0-78.78.1USN-7703-1
linux-image-lowlatency-64k-hwe-22.04Ubuntu
Fixed in:6.8.0-78.78.1~22.04.1USN-7703-1
linux-image-lowlatency-64k-hwe-24.04Ubuntu
Fixed in:6.11.0-1014.15~24.04.1USN-7521-3
linux-image-lowlatency-hwe-22.04Ubuntu
Fixed in:6.8.0-78.78.1~22.04.1USN-7703-1
linux-image-lowlatency-hwe-24.04Ubuntu
Fixed in:6.11.0-1014.15~24.04.1USN-7521-3
linux-image-nvidiaUbuntu
Fixed in:6.8.0-1035.38USN-7703-4
linux-image-nvidia-6.8Ubuntu
Fixed in:6.8.0-1035.38~22.04.1USN-7703-4
Fixed in:6.8.0-1035.38USN-7703-4
linux-image-nvidia-64kUbuntu
Fixed in:6.8.0-1035.38USN-7703-4
linux-image-nvidia-64k-6.8Ubuntu
Fixed in:6.8.0-1035.38~22.04.1USN-7703-4
Fixed in:6.8.0-1035.38USN-7703-4
linux-image-nvidia-64k-hwe-22.04Ubuntu
Fixed in:6.8.0-1035.38~22.04.1USN-7703-4
linux-image-nvidia-hwe-22.04Ubuntu
Fixed in:6.8.0-1035.38~22.04.1USN-7703-4
linux-image-nvidia-lowlatencyUbuntu
Fixed in:6.8.0-1035.38.1USN-7703-4
linux-image-nvidia-lowlatency-6.8Ubuntu
Fixed in:6.8.0-1035.38.1USN-7703-4
linux-image-nvidia-lowlatency-64kUbuntu
Fixed in:6.8.0-1035.38.1USN-7703-4
linux-image-nvidia-lowlatency-64k-6.8Ubuntu
Fixed in:6.8.0-1035.38.1USN-7703-4
linux-image-oem-22.04Ubuntu
Fixed in:6.8.0-78.78~22.04.1USN-7703-4
linux-image-oem-22.04aUbuntu
Fixed in:6.8.0-78.78~22.04.1USN-7703-4
linux-image-oem-22.04bUbuntu
Fixed in:6.8.0-78.78~22.04.1USN-7703-4
linux-image-oem-22.04cUbuntu
Fixed in:6.8.0-78.78~22.04.1USN-7703-4
linux-image-oem-22.04dUbuntu
Fixed in:6.8.0-78.78~22.04.1USN-7703-4
linux-image-oem-24.04bUbuntu
Fixed in:6.11.0-1022.22USN-7521-1
linux-image-oracleUbuntu
Fixed in:6.8.0-1032.33~22.04.1USN-7703-3
linux-image-oracle-6.8Ubuntu
Fixed in:6.8.0-1032.33~22.04.1USN-7703-3
Fixed in:6.8.0-1032.33USN-7703-3
linux-image-oracle-64kUbuntu
Fixed in:6.8.0-1032.33~22.04.1USN-7703-3
linux-image-oracle-64k-6.8Ubuntu
Fixed in:6.8.0-1032.33~22.04.1USN-7703-3
Fixed in:6.8.0-1032.33USN-7703-3
linux-image-oracle-64k-lts-24.04Ubuntu
Fixed in:6.8.0-1032.33USN-7703-3
linux-image-oracle-lts-24.04Ubuntu
Fixed in:6.8.0-1032.33USN-7703-3
linux-image-raspiUbuntu
Fixed in:6.8.0-1035.39USN-7703-4
linux-image-raspi-6.8Ubuntu
Fixed in:6.8.0-1035.39USN-7703-4
linux-image-raspi-realtimeUbuntu
Fixed in:6.8.0-2028.29USN-7719-1
linux-image-raspi-realtime-6.8Ubuntu
Fixed in:6.8.0-2028.29USN-7719-1
linux-image-realtimeUbuntu
Fixed in:6.8.1-1030.31USN-7703-1
linux-image-realtime-6.8.1Ubuntu
Fixed in:6.8.1-1030.31USN-7703-1
linux-image-virtualUbuntu
Fixed in:6.8.0-78.78USN-7703-1
linux-image-virtual-6.8Ubuntu
Fixed in:6.8.0-78.78~22.04.1USN-7703-4
Fixed in:6.8.0-78.78USN-7703-1
linux-image-virtual-hwe-22.04Ubuntu
Fixed in:6.8.0-78.78~22.04.1USN-7703-4
linux-image-virtual-hwe-24.04Ubuntu
Fixed in:6.11.0-26.26~24.04.1USN-7521-1
linux-lowlatencyUbuntu
Fixed in:6.8.0-78.78.1USN-7703-1
linux-lowlatency-hwe-6.11Ubuntu
Fixed in:6.11.0-1014.15~24.04.1USN-7521-3
linux-lowlatency-hwe-6.8Ubuntu
Fixed in:6.8.0-78.78.1~22.04.1USN-7703-1
linux-nvidiaUbuntu
Fixed in:6.8.0-1035.38USN-7703-4
linux-nvidia-6.8Ubuntu
Fixed in:6.8.0-1035.38~22.04.1USN-7703-4
linux-nvidia-lowlatencyUbuntu
Fixed in:6.8.0-1035.38.1USN-7703-4
linux-oem-6.11Ubuntu
Fixed in:6.11.0-1022.22USN-7521-1
linux-oracleUbuntu
Fixed in:6.8.0-1032.33USN-7703-3
linux-oracle-6.8Ubuntu
Fixed in:6.8.0-1032.33~22.04.1USN-7703-3
linux-raspiUbuntu
Fixed in:6.8.0-1035.39USN-7703-4
linux-raspi-realtimeUbuntu
Fixed in:6.8.0-2028.29USN-7719-1
linux-realtimeUbuntu
Fixed in:6.8.1-1030.31USN-7703-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

ConfidentialityNone
IntegrityNone
AvailabilityHigh

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

Exploit Intelligence

0.15%probability of exploitation in 30 days
5thpercentile

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

References

Related Vulnerabilities

Other CWE-667 vulnerabilities, ordered by exploit likelihood. View all

CVESeverityCVSSEPSSExploitedFix
CVE-2019-10072High7.573%-Fix
CVE-2002-1850High7.517%-Fix
CVE-2009-2699High7.514%-Fix
CVE-2004-0174High7.512%--
CVE-2009-4272High7.511%--
CVE-2020-24606High8.65.2%-Fix
Embed a live status badge for CVE-2024-58088
CVE-2024-58088 severity badge

Markdown

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

HTML

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