CVE & CISA-KEV Catalog

CVE-2024-26923

MEDIUM
4.7
CVSS v3
NVD

Description

In the Linux kernel, the following vulnerability has been resolved: af_unix: Fix garbage collector racing against connect() Garbage collector does not take into account the risk of embryo getting enqueued during the garbage collection. If such embryo has a peer that carries SCM_RIGHTS, two consecutive passes of scan_children() may see a different set of children. Leading to an incorrectly elevated inflight count, and then a dangling pointer within the gc_inflight_list. sockets are AF_UNIX/SOCK_STREAM S is an unconnected socket L is a listening in-flight socket bound to addr, not in fdtable V's fd will be passed via sendmsg(), gets inflight count bumped connect(S, addr) sendmsg(S, [V]); close(V) __unix_gc() ---------------- ------------------------- ----------- NS = unix_create1() skb1 = sock_wmalloc(NS) L = unix_find_other(addr) unix_state_lock(L) unix_peer(S) = NS // V count=1 inflight=0 NS = unix_peer(S) skb2 = sock_alloc() skb_queue_tail(NS, skb2[V]) // V became in-flight // V count=2 inflight=1 close(V) // V count=1 inflight=1 // GC candidate condition met for u in gc_inflight_list: if (total_refs == inflight_refs) add u to gc_candidates // gc_candidates={L, V} for u in gc_candidates: scan_children(u, dec_inflight) // embryo (skb1) was not // reachable from L yet, so V's // inflight remains unchanged __skb_queue_tail(L, skb1) unix_state_unlock(L) for u in gc_candidates: if (u.inflight) scan_children(u, inc_inflight_move_tail) // V count=1 inflight=2 (!) If there is a GC-candidate listening socket, lock/unlock its state. This makes GC wait until the end of any ongoing connect() to that socket. After flipping the lock, a possibly SCM-laden embryo is already enqueued. And if there is another embryo coming, it can not possibly carry SCM_RIGHTS. At this point, unix_inflight() can not happen because unix_gc_lock is already taken. Inflight graph remains unaffected.

How to fix

Remediation Available
linuxDebian
Fixed in:5.10.216-1CVE-2024-26923
Fixed in:6.1.90-1CVE-2024-26923
Fixed in:6.8.9-1CVE-2024-26923
Fixed in:6.8.9-1CVE-2024-26923
bpftoolRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:7.0.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:7.3.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:7.3.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:7.0.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:7.0.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:7.3.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:7.0.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:7.3.0-427.42.1.el9_4RHSA-2024:8617
bpftoolRed Hat / RHEL
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
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.0.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:7.3.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:7.0.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:7.0.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:7.3.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:7.3.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:7.0.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:7.3.0-427.42.1.el9_4RHSA-2024:8617
bpftool-debuginfoRocky
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
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-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:7.3.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:7.0.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:7.3.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:7.0.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:7.3.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:7.0.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:7.0.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:7.3.0-427.42.1.el9_4RHSA-2024:8617
bpftool-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:7.3.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:7.0.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:7.3.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:7.0.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:7.3.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:7.3.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:7.0.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:7.0.0-284.75.1.el9_2RHSA-2024:4823
kernelRocky
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
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:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernelRed Hat / RHEL
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
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-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
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-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-64kRed Hat / RHEL
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-64kRocky
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-64k-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-64k-coreRocky
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-64k-debugRocky
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-64k-debugRed Hat / RHEL
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-64k-debug-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-64k-debug-coreRocky
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-64k-debug-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-64k-debug-debuginfoRocky
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-64k-debug-develRed Hat / RHEL
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-64k-debug-develRocky
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-64k-debug-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-64k-debug-devel-matchedRocky
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-64k-debug-modulesRocky
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-64k-debug-modulesRed Hat / RHEL
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-64k-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-64k-debug-modules-coreRocky
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-64k-debug-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-64k-debug-modules-extraRocky
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-64k-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-64k-debuginfoRocky
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-64k-develRed Hat / RHEL
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-64k-develRocky
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-64k-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-64k-devel-matchedRocky
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-64k-modulesRocky
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-64k-modulesRed Hat / RHEL
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-64k-modules-coreRocky
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-64k-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-64k-modules-extraRocky
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-64k-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-abi-stablelistsRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-abi-stablelistsRed Hat / RHEL
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-coreRed Hat / RHEL
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
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-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-coreRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-debugRocky
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
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-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-debugRed Hat / RHEL
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
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-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-debug-coreRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
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-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-debug-coreRed Hat / RHEL
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
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-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-debug-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
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-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-debug-debuginfoRocky
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
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-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-debug-develRocky
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-debug-develRed Hat / RHEL
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-debug-devel-matchedRocky
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-debug-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-debug-modulesRocky
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
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-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
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:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-debug-modules-coreRocky
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-debug-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
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-372.125.1.el8_6RHSA-2024:7486
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-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
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-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-debug-uki-virtRed Hat / RHEL
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-debug-uki-virtRocky
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-debuginfoRocky
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
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-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
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-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-debuginfo-common-aarch64Red Hat / RHEL
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-debuginfo-common-aarch64Rocky
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-debuginfo-common-ppc64leRed Hat / RHEL
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-debuginfo-common-ppc64leRocky
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-debuginfo-common-s390xRocky
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-debuginfo-common-s390xRed Hat / RHEL
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-debuginfo-common-x86_64Rocky
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-develRed Hat / RHEL
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
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.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-develRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
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-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-devel-matchedRocky
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-docRed Hat / RHEL
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-docRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-modulesRocky
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
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-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-modulesRed Hat / RHEL
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-modules-coreRocky
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
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-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-modules-extraRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
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.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.rt14.360.el9_2RHSA-2024:4831
Fixed in:0:5.14.0-284.75.1.rt14.360.el9_2RHSA-2024:4831
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-284.75.1.rt14.360.el9_2RHSA-2024:4831
Fixed in:0:5.14.0-284.75.1.rt14.360.el9_2RHSA-2024:4831
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-rt-coreRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-284.75.1.rt14.360.el9_2RHSA-2024:4831
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
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-284.75.1.rt14.360.el9_2RHSA-2024:4831
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-rt-debugRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-284.75.1.rt14.360.el9_2RHSA-2024:4831
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
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-284.75.1.rt14.360.el9_2RHSA-2024:4831
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
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-284.75.1.rt14.360.el9_2RHSA-2024:4831
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
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-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.rt14.360.el9_2RHSA-2024:4831
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.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.rt14.360.el9_2RHSA-2024:4831
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-284.75.1.rt14.360.el9_2RHSA-2024:4831
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
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-284.75.1.rt14.360.el9_2RHSA-2024:4831
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
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-284.75.1.rt14.360.el9_2RHSA-2024:4831
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
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-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.rt14.360.el9_2RHSA-2024:4831
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-284.75.1.rt14.360.el9_2RHSA-2024:4831
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
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-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.rt14.360.el9_2RHSA-2024:4831
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-284.75.1.rt14.360.el9_2RHSA-2024:4831
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-rt-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.rt14.360.el9_2RHSA-2024:4831
kernel-rt-debug-modules-coreRocky
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.rt14.360.el9_2RHSA-2024:4831
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-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.rt14.360.el9_2RHSA-2024:4831
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-284.75.1.rt14.360.el9_2RHSA-2024:4831
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-rt-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.rt14.360.el9_2RHSA-2024:4831
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
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-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.rt14.360.el9_2RHSA-2024:4831
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-rt-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-284.75.1.rt14.360.el9_2RHSA-2024:4831
kernel-rt-debuginfo-common-x86_64Rocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-284.75.1.rt14.360.el9_2RHSA-2024:4831
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.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.rt14.360.el9_2RHSA-2024:4831
kernel-rt-develRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-284.75.1.rt14.360.el9_2RHSA-2024:4831
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-rt-kvmRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-284.75.1.rt14.360.el9_2RHSA-2024:4831
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
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-284.75.1.rt14.360.el9_2RHSA-2024:4831
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
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-284.75.1.rt14.360.el9_2RHSA-2024:4831
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-rt-modulesRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.rt14.360.el9_2RHSA-2024:4831
kernel-rt-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.rt14.360.el9_2RHSA-2024:4831
kernel-rt-modules-coreRocky
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.rt14.360.el9_2RHSA-2024:4831
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-284.75.1.rt14.360.el9_2RHSA-2024:4831
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
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-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.rt14.360.el9_2RHSA-2024:4831
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-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
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-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-tools-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-tools-debuginfoRocky
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-tools-libsRed Hat / RHEL
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
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-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-tools-libsRocky
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
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-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-tools-libs-develRocky
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
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-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
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:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-uki-virtRocky
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-uki-virtRed Hat / RHEL
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-zfcpdumpRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-zfcpdumpRocky
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-zfcpdump-coreRed Hat / RHEL
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-zfcpdump-coreRocky
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-zfcpdump-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-zfcpdump-debuginfoRocky
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-zfcpdump-develRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-zfcpdump-develRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-zfcpdump-devel-matchedRocky
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-zfcpdump-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-zfcpdump-modulesRocky
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-zfcpdump-modulesRed Hat / RHEL
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-zfcpdump-modules-coreRocky
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-zfcpdump-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
kernel-zfcpdump-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
kernel-zfcpdump-modules-extraRocky
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
libperfRed Hat / RHEL
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
libperfRocky
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
libperf-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
libperf-debuginfoRocky
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
perfRocky
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
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-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
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-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
perfRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
perf-debuginfoRocky
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
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-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
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-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
perf-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
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-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
python3-perfRocky
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
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-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
python3-perfRed Hat / RHEL
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
python3-perf-debuginfoRocky
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
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-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
python3-perf-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
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-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-477.74.1.el8_8RHSA-2024:6993
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-372.125.1.el8_6RHSA-2024:7486
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
rtlaRed Hat / RHEL
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
rtlaRocky
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-284.75.1.el9_2RHSA-2024:4823
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
rvRed Hat / RHEL
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
rvRocky
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
Fixed in:0:5.14.0-427.42.1.el9_4RHSA-2024:8617
awsUbuntu
Fixed in:4.4.0-1129LSN-0107-1
Fixed in:4.15.0-1159LSN-0107-1
Fixed in:5.4.0-1009LSN-0107-1
Fixed in:5.15.0-1000LSN-0107-1
Fixed in:6.8.0-1008LSN-0107-1
aws-5.15Ubuntu
Fixed in:5.15.0-1000LSN-0107-1
aws-hweUbuntu
Fixed in:4.15.0-1126LSN-0107-1
azureUbuntu
Fixed in:4.15.0-1114LSN-0107-1
Fixed in:5.4.0-1010LSN-0107-1
Fixed in:5.15.0-1000LSN-0107-1
Fixed in:6.8.0-1007LSN-0107-1
azure-4.15Ubuntu
Fixed in:4.15.0-1168LSN-0107-1
azure-5.15Ubuntu
Fixed in:5.15.0-1069LSN-0107-1
gcpUbuntu
Fixed in:4.15.0-1118LSN-0107-1
Fixed in:5.4.0-1009LSN-0107-1
Fixed in:5.15.0-1000LSN-0107-1
Fixed in:6.8.0-1007LSN-0107-1
gcp-4.15Ubuntu
Fixed in:4.15.0-1154LSN-0107-1
gcp-5.15Ubuntu
Fixed in:5.15.0-1000LSN-0107-1
generic-4.15Ubuntu
Fixed in:4.15.0-143LSN-0107-1
Fixed in:4.15.0-214LSN-0107-1
generic-4.4Ubuntu
Fixed in:4.4.0-168LSN-0107-1
Fixed in:4.4.0-211LSN-0107-1
generic-5.15Ubuntu
Fixed in:5.15.0-0LSN-0107-1
generic-5.4Ubuntu
Fixed in:5.4.0-150LSN-0107-1
Fixed in:5.4.0-26LSN-0107-1
gkeUbuntu
Fixed in:5.4.0-1033LSN-0107-1
Fixed in:5.15.0-1000LSN-0107-1
gke-5.15Ubuntu
Fixed in:5.15.0-1000LSN-0107-1
gkeopUbuntu
Fixed in:5.4.0-1009LSN-0107-1
ibmUbuntu
Fixed in:5.4.0-1009LSN-0107-1
Fixed in:5.15.0-1000LSN-0107-1
Fixed in:6.8.0-1005LSN-0107-1
ibm-5.15Ubuntu
Fixed in:5.15.0-1000LSN-0107-1
linuxUbuntu
Fixed in:4.4.0-257.291USN-6938-1
Fixed in:4.15.0-227.239USN-6926-1
Fixed in:5.4.0-189.209USN-6896-1
Fixed in:5.15.0-116.126USN-6898-1
Fixed in:5.15.0-71LSN-0107-1
Fixed in:6.5.0-44.44USN-6895-1
Fixed in:6.8.0-38.38USN-6893-1
Fixed in:6.8.0-1LSN-0107-1
linux-awsUbuntu
Fixed in:4.4.0-1134.140USN-6938-1
Fixed in:4.4.0-1172.187USN-6938-1
Fixed in:4.15.0-1170.183USN-6926-1
Fixed in:5.4.0-1128.138USN-6896-5
Fixed in:5.15.0-1065.71USN-6898-3
Fixed in:6.8.0-1011.12USN-6893-3
linux-aws-5.15Ubuntu
Fixed in:5.15.0-1065.71~20.04.1USN-6898-4
linux-aws-5.4Ubuntu
Fixed in:5.4.0-1128.138~18.04.1USN-6896-5
linux-aws-6.5Ubuntu
Fixed in:6.5.0-1023.23~22.04.1USN-6895-3
linux-aws-hweUbuntu
Fixed in:4.15.0-1170.183~16.04.1USN-6926-1
linux-azureUbuntu
Fixed in:4.15.0-1179.194~14.04.1USN-6926-2
Fixed in:4.15.0-1179.194~16.04.1USN-6926-3
Fixed in:5.4.0-1133.140USN-6896-1
Fixed in:5.15.0-1068.77USN-6917-1
Fixed in:6.8.0-1010.10USN-6893-1
linux-azure-4.15Ubuntu
Fixed in:4.15.0-1179.194USN-6926-2
linux-azure-5.15Ubuntu
Fixed in:5.15.0-1068.77~20.04.1USN-6917-1
linux-azure-5.4Ubuntu
Fixed in:5.4.0-1133.140~18.04.1USN-6896-1
linux-azure-6.5Ubuntu
Fixed in:6.5.0-1024.25~22.04.1USN-6895-2
linux-azure-fdeUbuntu
Fixed in:5.15.0-1068.77.1USN-6917-1
linux-azure-fde-5.15Ubuntu
Fixed in:5.15.0-1068.77~20.04.1.1USN-6917-1
linux-bluefieldUbuntu
Fixed in:5.4.0-1088.95USN-6896-1
linux-gcpUbuntu
Fixed in:4.15.0-1164.181~16.04.1USN-6926-1
Fixed in:5.4.0-1132.141USN-6896-1
Fixed in:5.15.0-1064.72USN-6898-1
Fixed in:6.5.0-1024.26USN-6895-1
Fixed in:6.8.0-1010.11USN-6893-1
linux-gcp-4.15Ubuntu
Fixed in:4.15.0-1164.181USN-6926-1
linux-gcp-5.15Ubuntu
Fixed in:5.15.0-1065.73~20.04.1USN-6927-1
linux-gcp-5.4Ubuntu
Fixed in:5.4.0-1132.141~18.04.1USN-6896-1
linux-gcp-6.5Ubuntu
Fixed in:6.5.0-1024.26~22.04.1USN-6895-2
linux-gkeUbuntu
Fixed in:5.15.0-1062.68USN-6898-1
Fixed in:6.8.0-1006.9USN-6893-2
linux-gkeopUbuntu
Fixed in:5.4.0-1095.99USN-6896-1
Fixed in:5.15.0-1048.55USN-6898-1
linux-gkeop-5.15Ubuntu
Fixed in:5.15.0-1048.55~20.04.1USN-6898-1
linux-hweUbuntu
Fixed in:4.15.0-227.239~16.04.1USN-6926-1
linux-hwe-5.15Ubuntu
Fixed in:5.15.0-116.126~20.04.1USN-6898-3
linux-hwe-5.4Ubuntu
Fixed in:5.4.0-189.209~18.04.1USN-6896-2
linux-hwe-6.5Ubuntu
Fixed in:6.5.0-44.44~22.04.1USN-6900-1
linux-ibmUbuntu
Fixed in:5.4.0-1075.80USN-6896-1
Fixed in:5.15.0-1058.61USN-6898-1
Fixed in:6.8.0-1008.8USN-6893-1
linux-ibm-5.15Ubuntu
Fixed in:5.15.0-1058.61~20.04.1USN-6898-2
linux-ibm-5.4Ubuntu
Fixed in:5.4.0-1075.80~18.04.1USN-6896-1
linux-image-4.15.0-1133-oracleUbuntu
Fixed in:4.15.0-1133.144~16.04.1USN-6926-1
Fixed in:4.15.0-1133.144USN-6926-1
linux-image-4.15.0-1154-kvmUbuntu
Fixed in:4.15.0-1154.159USN-6926-1
linux-image-4.15.0-1164-gcpUbuntu
Fixed in:4.15.0-1164.181~16.04.1USN-6926-1
Fixed in:4.15.0-1164.181USN-6926-1
linux-image-4.15.0-1170-awsUbuntu
Fixed in:4.15.0-1170.183~16.04.1USN-6926-1
Fixed in:4.15.0-1170.183USN-6926-1
linux-image-4.15.0-1179-azureUbuntu
Fixed in:4.15.0-1179.194~14.04.1USN-6926-2
Fixed in:4.15.0-1179.194~16.04.1USN-6926-3
Fixed in:4.15.0-1179.194USN-6926-2
linux-image-4.15.0-227-genericUbuntu
Fixed in:4.15.0-227.239~16.04.1USN-6926-1
Fixed in:4.15.0-227.239USN-6926-1
linux-image-4.15.0-227-lowlatencyUbuntu
Fixed in:4.15.0-227.239~16.04.1USN-6926-1
Fixed in:4.15.0-227.239USN-6926-1
linux-image-4.4.0-1134-awsUbuntu
Fixed in:4.4.0-1134.140USN-6938-1
linux-image-4.4.0-1135-kvmUbuntu
Fixed in:4.4.0-1135.145USN-6938-1
linux-image-4.4.0-1172-awsUbuntu
Fixed in:4.4.0-1172.187USN-6938-1
linux-image-4.4.0-257-genericUbuntu
Fixed in:4.4.0-257.291~14.04.1USN-6938-1
Fixed in:4.4.0-257.291USN-6938-1
linux-image-4.4.0-257-lowlatencyUbuntu
Fixed in:4.4.0-257.291~14.04.1USN-6938-1
Fixed in:4.4.0-257.291USN-6938-1
linux-image-5.15.0-1035-xilinx-zynqmpUbuntu
Fixed in:5.15.0-1035.39USN-7019-1
linux-image-5.15.0-1048-gkeopUbuntu
Fixed in:5.15.0-1048.55~20.04.1USN-6898-1
Fixed in:5.15.0-1048.55USN-6898-1
linux-image-5.15.0-1058-ibmUbuntu
Fixed in:5.15.0-1058.61~20.04.1USN-6898-2
Fixed in:5.15.0-1058.61USN-6898-1
linux-image-5.15.0-1058-raspiUbuntu
Fixed in:5.15.0-1058.61USN-6919-1
linux-image-5.15.0-1060-intel-iotgUbuntu
Fixed in:5.15.0-1060.66~20.04.1USN-6898-1
Fixed in:5.15.0-1060.66USN-6898-1
linux-image-5.15.0-1060-nvidiaUbuntu
Fixed in:5.15.0-1060.61USN-6898-1
linux-image-5.15.0-1060-nvidia-lowlatencyUbuntu
Fixed in:5.15.0-1060.61USN-6898-1
linux-image-5.15.0-1062-gkeUbuntu
Fixed in:5.15.0-1062.68USN-6898-1
linux-image-5.15.0-1062-kvmUbuntu
Fixed in:5.15.0-1062.67USN-6898-1
linux-image-5.15.0-1063-oracleUbuntu
Fixed in:5.15.0-1063.69~20.04.1USN-6898-2
Fixed in:5.15.0-1063.69USN-6898-1
linux-image-5.15.0-1064-gcpUbuntu
Fixed in:5.15.0-1064.72USN-6898-1
linux-image-5.15.0-1065-awsUbuntu
Fixed in:5.15.0-1065.71~20.04.1USN-6898-4
Fixed in:5.15.0-1065.71USN-6898-3
linux-image-5.15.0-1065-gcpUbuntu
Fixed in:5.15.0-1065.73~20.04.1USN-6927-1
linux-image-5.15.0-1068-azureUbuntu
Fixed in:5.15.0-1068.77~20.04.1USN-6917-1
Fixed in:5.15.0-1068.77USN-6917-1
linux-image-5.15.0-1068-azure-fdeUbuntu
Fixed in:5.15.0-1068.77~20.04.1.1USN-6917-1
Fixed in:5.15.0-1068.77.1USN-6917-1
linux-image-5.15.0-116-genericUbuntu
Fixed in:5.15.0-116.126~20.04.1USN-6898-3
Fixed in:5.15.0-116.126USN-6898-1
linux-image-5.15.0-116-generic-64kUbuntu
Fixed in:5.15.0-116.126~20.04.1USN-6898-3
Fixed in:5.15.0-116.126USN-6898-1
linux-image-5.15.0-116-generic-lpaeUbuntu
Fixed in:5.15.0-116.126~20.04.1USN-6898-3
Fixed in:5.15.0-116.126USN-6898-1
linux-image-5.15.0-116-lowlatencyUbuntu
Fixed in:5.15.0-116.126~20.04.1USN-6898-2
Fixed in:5.15.0-116.126USN-6898-2
linux-image-5.15.0-116-lowlatency-64kUbuntu
Fixed in:5.15.0-116.126~20.04.1USN-6898-2
Fixed in:5.15.0-116.126USN-6898-2
linux-image-5.4.0-1040-iotUbuntu
Fixed in:5.4.0-1040.41USN-6896-5
linux-image-5.4.0-1047-xilinx-zynqmpUbuntu
Fixed in:5.4.0-1047.51USN-6896-3
linux-image-5.4.0-1075-ibmUbuntu
Fixed in:5.4.0-1075.80~18.04.1USN-6896-1
Fixed in:5.4.0-1075.80USN-6896-1
linux-image-5.4.0-1088-bluefieldUbuntu
Fixed in:5.4.0-1088.95USN-6896-1
linux-image-5.4.0-1095-gkeopUbuntu
Fixed in:5.4.0-1095.99USN-6896-1
linux-image-5.4.0-1112-raspiUbuntu
Fixed in:5.4.0-1112.124~18.04.1USN-6896-4
Fixed in:5.4.0-1112.124USN-6896-4
linux-image-5.4.0-1116-kvmUbuntu
Fixed in:5.4.0-1116.123USN-6896-1
linux-image-5.4.0-1127-oracleUbuntu
Fixed in:5.4.0-1127.136~18.04.1USN-6896-2
Fixed in:5.4.0-1127.136USN-6896-3
linux-image-5.4.0-1128-awsUbuntu
Fixed in:5.4.0-1128.138~18.04.1USN-6896-5
Fixed in:5.4.0-1128.138USN-6896-5
linux-image-5.4.0-1132-gcpUbuntu
Fixed in:5.4.0-1132.141~18.04.1USN-6896-1
Fixed in:5.4.0-1132.141USN-6896-1
linux-image-5.4.0-1133-azureUbuntu
Fixed in:5.4.0-1133.140~18.04.1USN-6896-1
Fixed in:5.4.0-1133.140USN-6896-1
linux-image-5.4.0-189-genericUbuntu
Fixed in:5.4.0-189.209~18.04.1USN-6896-2
Fixed in:5.4.0-189.209USN-6896-1
linux-image-5.4.0-189-generic-lpaeUbuntu
Fixed in:5.4.0-189.209USN-6896-1
linux-image-5.4.0-189-lowlatencyUbuntu
Fixed in:5.4.0-189.209~18.04.1USN-6896-2
Fixed in:5.4.0-189.209USN-6896-1
linux-image-6.5.0-1017-starfiveUbuntu
Fixed in:6.5.0-1017.18~22.04.1USN-6895-3
linux-image-6.5.0-1020-raspiUbuntu
Fixed in:6.5.0-1020.23USN-6895-1
linux-image-6.5.0-1023-awsUbuntu
Fixed in:6.5.0-1023.23~22.04.1USN-6895-3
linux-image-6.5.0-1023-nvidiaUbuntu
Fixed in:6.5.0-1023.24USN-6895-1
linux-image-6.5.0-1023-nvidia-64kUbuntu
Fixed in:6.5.0-1023.24USN-6895-1
linux-image-6.5.0-1024-azureUbuntu
Fixed in:6.5.0-1024.25~22.04.1USN-6895-2
linux-image-6.5.0-1024-azure-fdeUbuntu
Fixed in:6.5.0-1024.25~22.04.1USN-6895-2
linux-image-6.5.0-1024-gcpUbuntu
Fixed in:6.5.0-1024.26~22.04.1USN-6895-2
Fixed in:6.5.0-1024.26USN-6895-1
linux-image-6.5.0-1026-oracleUbuntu
Fixed in:6.5.0-1026.26~22.04.1USN-6895-3
linux-image-6.5.0-1026-oracle-64kUbuntu
Fixed in:6.5.0-1026.26~22.04.1USN-6895-3
linux-image-6.5.0-1027-oemUbuntu
Fixed in:6.5.0-1027.28USN-6895-4
linux-image-6.5.0-44-genericUbuntu
Fixed in:6.5.0-44.44~22.04.1USN-6900-1
Fixed in:6.5.0-44.44USN-6895-1
linux-image-6.5.0-44-generic-64kUbuntu
Fixed in:6.5.0-44.44~22.04.1USN-6900-1
Fixed in:6.5.0-44.44USN-6895-1
linux-image-6.5.0-44-lowlatencyUbuntu
Fixed in:6.5.0-44.44.1~22.04.1USN-6895-3
linux-image-6.5.0-44-lowlatency-64kUbuntu
Fixed in:6.5.0-44.44.1~22.04.1USN-6895-3
linux-image-6.8.0-1006-gkeUbuntu
Fixed in:6.8.0-1006.9USN-6893-2
linux-image-6.8.0-1007-intelUbuntu
Fixed in:6.8.0-1007.14USN-6893-1
linux-image-6.8.0-1007-raspiUbuntu
Fixed in:6.8.0-1007.7USN-6893-1
linux-image-6.8.0-1008-ibmUbuntu
Fixed in:6.8.0-1008.8USN-6893-1
linux-image-6.8.0-1008-oemUbuntu
Fixed in:6.8.0-1008.8USN-6893-1
linux-image-6.8.0-1008-oracleUbuntu
Fixed in:6.8.0-1008.8USN-6918-1
linux-image-6.8.0-1008-oracle-64kUbuntu
Fixed in:6.8.0-1008.8USN-6918-1
linux-image-6.8.0-1009-nvidiaUbuntu
Fixed in:6.8.0-1009.9USN-6893-2
linux-image-6.8.0-1009-nvidia-64kUbuntu
Fixed in:6.8.0-1009.9USN-6893-2
linux-image-6.8.0-1010-azureUbuntu
Fixed in:6.8.0-1010.10USN-6893-1
linux-image-6.8.0-1010-azure-fdeUbuntu
Fixed in:6.8.0-1010.10USN-6893-1
linux-image-6.8.0-1010-gcpUbuntu
Fixed in:6.8.0-1010.11USN-6893-1
linux-image-6.8.0-1011-awsUbuntu
Fixed in:6.8.0-1011.12USN-6893-3
linux-image-6.8.0-38-genericUbuntu
Fixed in:6.8.0-38.38USN-6893-1
linux-image-6.8.0-38-generic-64kUbuntu
Fixed in:6.8.0-38.38USN-6893-1
linux-image-6.8.0-38-lowlatencyUbuntu
Fixed in:6.8.0-38.38.1USN-6893-1
linux-image-6.8.0-38-lowlatency-64kUbuntu
Fixed in:6.8.0-38.38.1USN-6893-1
linux-image-awsUbuntu
Fixed in:4.4.0.1134.131USN-6938-1
Fixed in:4.4.0.1172.176USN-6938-1
Fixed in:5.4.0.1128.138~18.04.1USN-6896-5
Fixed in:5.15.0.1065.71~20.04.1USN-6898-4
Fixed in:6.5.0.1023.23~22.04.1USN-6895-3
Fixed in:6.8.0-1011.12USN-6893-3
linux-image-aws-hweUbuntu
Fixed in:4.15.0.1170.183~16.04.1USN-6926-1
linux-image-aws-lts-18.04Ubuntu
Fixed in:4.15.0.1170.168USN-6926-1
linux-image-aws-lts-20.04Ubuntu
Fixed in:5.4.0.1128.125USN-6896-5
linux-image-aws-lts-22.04Ubuntu
Fixed in:5.15.0.1065.65USN-6898-3
linux-image-azureUbuntu
Fixed in:4.15.0.1179.194~14.04.1USN-6926-2
Fixed in:4.15.0.1179.194~16.04.1USN-6926-3
Fixed in:5.4.0.1133.140~18.04.1USN-6896-1
Fixed in:5.15.0.1068.77~20.04.1USN-6917-1
Fixed in:6.5.0.1024.25~22.04.1USN-6895-2
Fixed in:6.8.0-1010.10USN-6893-1
linux-image-azure-cvmUbuntu
Fixed in:5.15.0.1068.77~20.04.1USN-6917-1
linux-image-azure-fdeUbuntu
Fixed in:5.15.0.1068.77~20.04.1.45USN-6917-1
Fixed in:6.5.0.1024.25~22.04.1USN-6895-2
Fixed in:6.8.0-1010.10USN-6893-1
linux-image-azure-fde-lts-22.04Ubuntu
Fixed in:5.15.0.1068.77.45USN-6917-1
linux-image-azure-lts-18.04Ubuntu
Fixed in:4.15.0.1179.147USN-6926-2
linux-image-azure-lts-20.04Ubuntu
Fixed in:5.4.0.1133.127USN-6896-1
linux-image-azure-lts-22.04Ubuntu
Fixed in:5.15.0.1068.66USN-6917-1
linux-image-bluefieldUbuntu
Fixed in:5.4.0.1088.84USN-6896-1
linux-image-gcpUbuntu
Fixed in:4.15.0.1164.181~16.04.1USN-6926-1
Fixed in:5.4.0.1132.141~18.04.1USN-6896-1
Fixed in:5.15.0.1065.73~20.04.1USN-6927-1
Fixed in:6.5.0.1024.26~22.04.1USN-6895-2
Fixed in:6.5.0.1024.26USN-6895-1
Fixed in:6.8.0-1010.11USN-6893-1
linux-image-gcp-lts-18.04Ubuntu
Fixed in:4.15.0.1164.177USN-6926-1
linux-image-gcp-lts-20.04Ubuntu
Fixed in:5.4.0.1132.134USN-6896-1
linux-image-gcp-lts-22.04Ubuntu
Fixed in:5.15.0.1064.60USN-6898-1
linux-image-genericUbuntu
Fixed in:4.4.0.257.263USN-6938-1
Fixed in:4.15.0.227.211USN-6926-1
Fixed in:5.4.0.189.187USN-6896-1
Fixed in:5.15.0.116.116USN-6898-1
Fixed in:6.5.0.44.44USN-6895-1
Fixed in:6.8.0-38.38USN-6893-1
linux-image-generic-64kUbuntu
Fixed in:5.15.0.116.116USN-6898-1
Fixed in:6.5.0.44.44USN-6895-1
Fixed in:6.8.0-38.38USN-6893-1
linux-image-generic-64k-hwe-20.04Ubuntu
Fixed in:5.15.0.116.126~20.04.1USN-6898-3
linux-image-generic-64k-hwe-22.04Ubuntu
Fixed in:6.5.0.44.44~22.04.1USN-6900-1
linux-image-generic-64k-hwe-24.04Ubuntu
Fixed in:6.8.0-38.38USN-6893-1
linux-image-generic-hwe-16.04Ubuntu
Fixed in:4.15.0.227.239~16.04.1USN-6926-1
linux-image-generic-hwe-18.04Ubuntu
Fixed in:5.4.0.189.209~18.04.1USN-6896-2
linux-image-generic-hwe-20.04Ubuntu
Fixed in:5.15.0.116.126~20.04.1USN-6898-3
linux-image-generic-hwe-22.04Ubuntu
Fixed in:6.5.0.44.44~22.04.1USN-6900-1
linux-image-generic-hwe-24.04Ubuntu
Fixed in:6.8.0-38.38USN-6893-1
linux-image-generic-lpaeUbuntu
Fixed in:5.4.0.189.187USN-6896-1
Fixed in:5.15.0.116.116USN-6898-1
Fixed in:6.5.0.44.44USN-6895-1
Fixed in:6.8.0-38.38USN-6893-1
linux-image-generic-lpae-hwe-20.04Ubuntu
Fixed in:5.15.0.116.126~20.04.1USN-6898-3
linux-image-generic-lts-xenialUbuntu
Fixed in:4.4.0.257.291~14.04.1USN-6938-1
Fixed in:4.4.0.257.263USN-6938-1
linux-image-gkeUbuntu
Fixed in:4.15.0.1164.181~16.04.1USN-6926-1
Fixed in:5.15.0.1062.61USN-6898-1
Fixed in:6.8.0-1006.9USN-6893-2
linux-image-gke-5.15Ubuntu
Fixed in:5.15.0.1062.61USN-6898-1
linux-image-gkeopUbuntu
Fixed in:5.4.0.1095.93USN-6896-1
Fixed in:5.15.0.1048.47USN-6898-1
linux-image-gkeop-5.15Ubuntu
Fixed in:5.15.0.1048.55~20.04.1USN-6898-1
Fixed in:5.15.0.1048.47USN-6898-1
linux-image-gkeop-5.4Ubuntu
Fixed in:5.4.0.1095.93USN-6896-1
linux-image-ibmUbuntu
Fixed in:5.4.0.1075.80~18.04.1USN-6896-1
Fixed in:5.15.0.1058.61~20.04.1USN-6898-2
Fixed in:5.15.0.1058.54USN-6898-1
Fixed in:6.8.0-1008.8USN-6893-1
linux-image-ibm-classicUbuntu
Fixed in:6.8.0-1008.8USN-6893-1
linux-image-ibm-lts-20.04Ubuntu
Fixed in:5.4.0.1075.104USN-6896-1
linux-image-ibm-lts-24.04Ubuntu
Fixed in:6.8.0-1008.8USN-6893-1
linux-image-intelUbuntu
Fixed in:5.15.0.1060.66~20.04.1USN-6898-1
Fixed in:6.8.0-1007.14USN-6893-1
linux-image-intel-iotgUbuntu
Fixed in:5.15.0.1060.66~20.04.1USN-6898-1
Fixed in:5.15.0.1060.60USN-6898-1
linux-image-kvmUbuntu
Fixed in:4.4.0.1135.132USN-6938-1
Fixed in:4.15.0.1154.145USN-6926-1
Fixed in:5.4.0.1116.112USN-6896-1
Fixed in:5.15.0.1062.58USN-6898-1
Fixed in:6.5.0.44.44USN-6895-1
Fixed in:6.8.0-38.38USN-6893-1
linux-image-lowlatencyUbuntu
Fixed in:4.4.0.257.263USN-6938-1
Fixed in:4.15.0.227.211USN-6926-1
Fixed in:5.4.0.189.187USN-6896-1
Fixed in:5.15.0.116.106USN-6898-2
Fixed in:6.8.0-38.38.1USN-6893-1
linux-image-lowlatency-64kUbuntu
Fixed in:5.15.0.116.106USN-6898-2
Fixed in:6.8.0-38.38.1USN-6893-1
linux-image-lowlatency-64k-hwe-20.04Ubuntu
Fixed in:5.15.0.116.126~20.04.1USN-6898-2
linux-image-lowlatency-64k-hwe-22.04Ubuntu
Fixed in:6.5.0.44.44.1~22.04.1USN-6895-3
linux-image-lowlatency-hwe-16.04Ubuntu
Fixed in:4.15.0.227.239~16.04.1USN-6926-1
linux-image-lowlatency-hwe-18.04Ubuntu
Fixed in:5.4.0.189.209~18.04.1USN-6896-2
linux-image-lowlatency-hwe-20.04Ubuntu
Fixed in:5.15.0.116.126~20.04.1USN-6898-2
linux-image-lowlatency-hwe-22.04Ubuntu
Fixed in:6.5.0.44.44.1~22.04.1USN-6895-3
linux-image-lowlatency-lts-xenialUbuntu
Fixed in:4.4.0.257.291~14.04.1USN-6938-1
Fixed in:4.4.0.257.263USN-6938-1
linux-image-nvidiaUbuntu
Fixed in:5.15.0.1060.60USN-6898-1
Fixed in:6.8.0-1009.9USN-6893-2
linux-image-nvidia-6.5Ubuntu
Fixed in:6.5.0.1023.31USN-6895-1
linux-image-nvidia-64kUbuntu
Fixed in:6.8.0-1009.9USN-6893-2
linux-image-nvidia-64k-6.5Ubuntu
Fixed in:6.5.0.1023.31USN-6895-1
linux-image-nvidia-64k-hwe-22.04Ubuntu
Fixed in:6.5.0.1023.31USN-6895-1
linux-image-nvidia-hwe-22.04Ubuntu
Fixed in:6.5.0.1023.31USN-6895-1
linux-image-nvidia-lowlatencyUbuntu
Fixed in:5.15.0.1060.60USN-6898-1
linux-image-oemUbuntu
Fixed in:4.15.0.227.239~16.04.1USN-6926-1
Fixed in:5.4.0.189.209~18.04.1USN-6896-2
Fixed in:5.4.0.189.187USN-6896-1
linux-image-oem-20.04Ubuntu
Fixed in:5.15.0.116.126~20.04.1USN-6898-3
linux-image-oem-20.04bUbuntu
Fixed in:5.15.0.116.126~20.04.1USN-6898-3
linux-image-oem-20.04cUbuntu
Fixed in:5.15.0.116.126~20.04.1USN-6898-3
linux-image-oem-20.04dUbuntu
Fixed in:5.15.0.116.126~20.04.1USN-6898-3
linux-image-oem-22.04Ubuntu
Fixed in:6.5.0.1027.29USN-6895-4
linux-image-oem-22.04aUbuntu
Fixed in:6.5.0.1027.29USN-6895-4
linux-image-oem-22.04bUbuntu
Fixed in:6.5.0.1027.29USN-6895-4
linux-image-oem-22.04cUbuntu
Fixed in:6.5.0.1027.29USN-6895-4
linux-image-oem-22.04dUbuntu
Fixed in:6.5.0.1027.29USN-6895-4
linux-image-oem-24.04Ubuntu
Fixed in:6.8.0-1008.8USN-6893-1
linux-image-oem-24.04aUbuntu
Fixed in:6.8.0-1008.8USN-6893-1
linux-image-oem-osp1Ubuntu
Fixed in:5.4.0.189.209~18.04.1USN-6896-2
Fixed in:5.4.0.189.187USN-6896-1
linux-image-oracleUbuntu
Fixed in:4.15.0.1133.144~16.04.1USN-6926-1
Fixed in:5.4.0.1127.136~18.04.1USN-6896-2
Fixed in:5.15.0.1063.69~20.04.1USN-6898-2
Fixed in:6.5.0.1026.26~22.04.1USN-6895-3
Fixed in:6.8.0-1008.8USN-6918-1
linux-image-oracle-64kUbuntu
Fixed in:6.5.0.1026.26~22.04.1USN-6895-3
Fixed in:6.8.0-1008.8USN-6918-1
linux-image-oracle-lts-18.04Ubuntu
Fixed in:4.15.0.1133.138USN-6926-1
linux-image-oracle-lts-20.04Ubuntu
Fixed in:5.4.0.1127.120USN-6896-3
linux-image-oracle-lts-22.04Ubuntu
Fixed in:5.15.0.1063.59USN-6898-1
linux-image-raspiUbuntu
Fixed in:5.4.0.1112.142USN-6896-4
Fixed in:5.15.0.1058.56USN-6919-1
Fixed in:6.5.0.1020.21USN-6895-1
Fixed in:6.8.0-1007.7USN-6893-1
linux-image-raspi-hwe-18.04Ubuntu
Fixed in:5.4.0.1112.124~18.04.1USN-6896-4
linux-image-raspi-nolpaeUbuntu
Fixed in:5.15.0.1058.56USN-6919-1
Fixed in:6.5.0.1020.21USN-6895-1
linux-image-raspi2Ubuntu
Fixed in:5.4.0.1112.142USN-6896-4
linux-image-snapdragon-hwe-18.04Ubuntu
Fixed in:5.4.0.189.209~18.04.1USN-6896-2
linux-image-starfiveUbuntu
Fixed in:6.5.0.1017.18~22.04.1USN-6895-3
linux-image-virtualUbuntu
Fixed in:4.4.0.257.263USN-6938-1
Fixed in:4.15.0.227.211USN-6926-1
Fixed in:5.4.0.189.187USN-6896-1
Fixed in:5.15.0.116.116USN-6898-1
Fixed in:6.5.0.44.44USN-6895-1
Fixed in:6.8.0-38.38USN-6893-1
linux-image-virtual-hwe-16.04Ubuntu
Fixed in:4.15.0.227.239~16.04.1USN-6926-1
linux-image-virtual-hwe-18.04Ubuntu
Fixed in:5.4.0.189.209~18.04.1USN-6896-2
linux-image-virtual-hwe-20.04Ubuntu
Fixed in:5.15.0.116.126~20.04.1USN-6898-3
linux-image-virtual-hwe-22.04Ubuntu
Fixed in:6.5.0.44.44~22.04.1USN-6900-1
Fixed in:6.5.0.44.44USN-6895-1
linux-image-virtual-hwe-24.04Ubuntu
Fixed in:6.8.0-38.38USN-6893-1
linux-image-virtual-lts-xenialUbuntu
Fixed in:4.4.0.257.291~14.04.1USN-6938-1
Fixed in:4.4.0.257.263USN-6938-1
linux-image-xilinx-zynqmpUbuntu
Fixed in:5.4.0.1047.47USN-6896-3
Fixed in:5.15.0.1035.39USN-7019-1
linux-intelUbuntu
Fixed in:6.8.0-1007.14USN-6893-1
linux-intel-iotgUbuntu
Fixed in:5.15.0-1060.66USN-6898-1
linux-intel-iotg-5.15Ubuntu
Fixed in:5.15.0-1060.66~20.04.1USN-6898-1
linux-iotUbuntu
Fixed in:5.4.0-1040.41USN-6896-5
linux-kvmUbuntu
Fixed in:4.4.0-1135.145USN-6938-1
Fixed in:4.15.0-1154.159USN-6926-1
Fixed in:5.4.0-1116.123USN-6896-1
Fixed in:5.15.0-1062.67USN-6898-1
linux-lowlatencyUbuntu
Fixed in:5.15.0-116.126USN-6898-2
Fixed in:6.8.0-38.38.1USN-6893-1
linux-lowlatency-hwe-5.15Ubuntu
Fixed in:5.15.0-116.126~20.04.1USN-6898-2
linux-lowlatency-hwe-6.5Ubuntu
Fixed in:6.5.0-44.44.1~22.04.1USN-6895-3
linux-lts-xenialUbuntu
Fixed in:4.4.0-257.291~14.04.1USN-6938-1
linux-nvidiaUbuntu
Fixed in:5.15.0-1060.61USN-6898-1
Fixed in:6.8.0-1009.9USN-6893-2
linux-nvidia-6.5Ubuntu
Fixed in:6.5.0-1023.24USN-6895-1
linux-oem-6.5Ubuntu
Fixed in:6.5.0-1027.28USN-6895-4
linux-oem-6.8Ubuntu
Fixed in:6.8.0-1008.8USN-6893-1
linux-oracleUbuntu
Fixed in:4.15.0-1133.144~16.04.1USN-6926-1
Fixed in:4.15.0-1133.144USN-6926-1
Fixed in:5.4.0-1127.136USN-6896-3
Fixed in:5.15.0-1063.69USN-6898-1
Fixed in:6.8.0-1008.8USN-6918-1
linux-oracle-5.15Ubuntu
Fixed in:5.15.0-1063.69~20.04.1USN-6898-2
linux-oracle-5.4Ubuntu
Fixed in:5.4.0-1127.136~18.04.1USN-6896-2
linux-oracle-6.5Ubuntu
Fixed in:6.5.0-1026.26~22.04.1USN-6895-3
linux-raspiUbuntu
Fixed in:5.4.0-1112.124USN-6896-4
Fixed in:5.15.0-1058.61USN-6919-1
Fixed in:6.5.0-1020.23USN-6895-1
Fixed in:6.8.0-1007.7USN-6893-1
linux-raspi-5.4Ubuntu
Fixed in:5.4.0-1112.124~18.04.1USN-6896-4
linux-starfive-6.5Ubuntu
Fixed in:6.5.0-1017.18~22.04.1USN-6895-3
linux-xilinx-zynqmpUbuntu
Fixed in:5.4.0-1047.51USN-6896-3
Fixed in:5.15.0-1035.39USN-7019-1
lowlatency-4.15Ubuntu
Fixed in:4.15.0-143LSN-0107-1
Fixed in:4.15.0-214LSN-0107-1
lowlatency-4.4Ubuntu
Fixed in:4.4.0-168LSN-0107-1
Fixed in:4.4.0-211LSN-0107-1
lowlatency-5.15Ubuntu
Fixed in:5.15.0-0LSN-0107-1
lowlatency-5.4Ubuntu
Fixed in:5.4.0-150LSN-0107-1
Fixed in:5.4.0-26LSN-0107-1
oracleUbuntu
Fixed in:4.15.0-1129LSN-0107-1
Fixed in:5.4.0-1121LSN-0107-1
Fixed in:5.15.0-1055LSN-0107-1
oracle-5.15Ubuntu
Fixed in:5.15.0-1055LSN-0107-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

ConfidentialityNone
IntegrityNone
AvailabilityHigh

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

Exploit Intelligence

0.19%probability of exploitation in 30 days
9thpercentile

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

References

Related Vulnerabilities

Other CWE-362 (Race Condition) vulnerabilities, ordered by exploit likelihood. View all

CVESeverityCVSSEPSSExploitedFix
CVE-2024-6387High8.1100%-Fix
CVE-2023-36884High7.599%KEV + RansomFix
CVE-2018-15473Medium5.399%-Fix
CVE-2024-27983High8.287%-Fix
CVE-2014-0226Medium6.886%-Fix
CVE-2016-5195High7.084%KEVFix
Embed a live status badge for CVE-2024-26923
CVE-2024-26923 severity badge

Markdown

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

HTML

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