CVE & CISA-KEV Catalog

CVE-2024-49949

MEDIUM
5.5
CVSS v3
NVD

Description

In the Linux kernel, the following vulnerability has been resolved: net: avoid potential underflow in qdisc_pkt_len_init() with UFO After commit 7c6d2ecbda83 ("net: be more gentle about silly gso requests coming from user") virtio_net_hdr_to_skb() had sanity check to detect malicious attempts from user space to cook a bad GSO packet. Then commit cf9acc90c80ec ("net: virtio_net_hdr_to_skb: count transport header in UFO") while fixing one issue, allowed user space to cook a GSO packet with the following characteristic : IPv4 SKB_GSO_UDP, gso_size=3, skb->len = 28. When this packet arrives in qdisc_pkt_len_init(), we end up with hdr_len = 28 (IPv4 header + UDP header), matching skb->len Then the following sets gso_segs to 0 : gso_segs = DIV_ROUND_UP(skb->len - hdr_len, shinfo->gso_size); Then later we set qdisc_skb_cb(skb)->pkt_len to back to zero :/ qdisc_skb_cb(skb)->pkt_len += (gso_segs - 1) * hdr_len; This leads to the following crash in fq_codel [1] qdisc_pkt_len_init() is best effort, we only want an estimation of the bytes sent on the wire, not crashing the kernel. This patch is fixing this particular issue, a following one adds more sanity checks for another potential bug. [1] [ 70.724101] BUG: kernel NULL pointer dereference, address: 0000000000000000 [ 70.724561] #PF: supervisor read access in kernel mode [ 70.724561] #PF: error_code(0x0000) - not-present page [ 70.724561] PGD 10ac61067 P4D 10ac61067 PUD 107ee2067 PMD 0 [ 70.724561] Oops: Oops: 0000 [#1] SMP NOPTI [ 70.724561] CPU: 11 UID: 0 PID: 2163 Comm: b358537762 Not tainted 6.11.0-virtme #991 [ 70.724561] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.3-debian-1.16.3-2 04/01/2014 [ 70.724561] RIP: 0010:fq_codel_enqueue (net/sched/sch_fq_codel.c:120 net/sched/sch_fq_codel.c:168 net/sched/sch_fq_codel.c:230) sch_fq_codel [ 70.724561] Code: 24 08 49 c1 e1 06 44 89 7c 24 18 45 31 ed 45 31 c0 31 ff 89 44 24 14 4c 03 8b 90 01 00 00 eb 04 39 ca 73 37 4d 8b 39 83 c7 01 <49> 8b 17 49 89 11 41 8b 57 28 45 8b 5f 34 49 c7 07 00 00 00 00 49 All code ======== 0: 24 08 and $0x8,%al 2: 49 c1 e1 06 shl $0x6,%r9 6: 44 89 7c 24 18 mov %r15d,0x18(%rsp) b: 45 31 ed xor %r13d,%r13d e: 45 31 c0 xor %r8d,%r8d 11: 31 ff xor %edi,%edi 13: 89 44 24 14 mov %eax,0x14(%rsp) 17: 4c 03 8b 90 01 00 00 add 0x190(%rbx),%r9 1e: eb 04 jmp 0x24 20: 39 ca cmp %ecx,%edx 22: 73 37 jae 0x5b 24: 4d 8b 39 mov (%r9),%r15 27: 83 c7 01 add $0x1,%edi 2a:* 49 8b 17 mov (%r15),%rdx <-- trapping instruction 2d: 49 89 11 mov %rdx,(%r9) 30: 41 8b 57 28 mov 0x28(%r15),%edx 34: 45 8b 5f 34 mov 0x34(%r15),%r11d 38: 49 c7 07 00 00 00 00 movq $0x0,(%r15) 3f: 49 rex.WB Code starting with the faulting instruction =========================================== 0: 49 8b 17 mov (%r15),%rdx 3: 49 89 11 mov %rdx,(%r9) 6: 41 8b 57 28 mov 0x28(%r15),%edx a: 45 8b 5f 34 mov 0x34(%r15),%r11d e: 49 c7 07 00 00 00 00 movq $0x0,(%r15) 15: 49 rex.WB [ 70.724561] RSP: 0018:ffff95ae85e6fb90 EFLAGS: 00000202 [ 70.724561] RAX: 0000000002000000 RBX: ffff95ae841de000 RCX: 0000000000000000 [ 70.724561] RDX: 0000000000000000 RSI: 0000000000000001 RDI: 0000000000000001 [ 70.724561] RBP: ffff95ae85e6fbf8 R08: 0000000000000000 R09: ffff95b710a30000 [ 70.724561] R10: 0000000000000000 R11: bdf289445ce31881 R12: ffff95ae85e6fc58 [ 70.724561] R13: 0000000000000000 R14: 0000000000000040 R15: 0000000000000000 [ 70.724561] FS: 000000002c5c1380(0000) GS:ffff95bd7fcc0000(0000) knlGS:0000000000000000 [ 70.724561] CS: 0010 DS: 0000 ES: 0000 C ---truncated---

How to fix

Remediation Available
linuxDebian
Fixed in:5.10.234-1CVE-2024-49949
Fixed in:6.1.115-1CVE-2024-49949
Fixed in:6.11.4-1CVE-2024-49949
Fixed in:6.11.4-1CVE-2024-49949
bpftoolRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:7.3.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:7.4.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:7.4.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:7.3.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:7.3.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:7.4.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:7.4.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:7.3.0-427.57.1.el9_4RHSA-2025:2270
bpftoolRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:7.3.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:7.3.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:7.3.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:7.3.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:7.4.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:7.4.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:7.4.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:7.4.0-503.16.1.el9_5RHSA-2024:10939
bpftool-debuginfoRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:7.3.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:7.3.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:7.4.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:7.3.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:7.4.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:7.4.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:7.4.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:7.3.0-427.57.1.el9_4RHSA-2025:2270
bpftool-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:7.4.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:7.3.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:7.4.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:7.3.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:7.3.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:7.4.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:7.3.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:7.4.0-503.16.1.el9_5RHSA-2024:10939
kernelRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernelRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-64kRocky
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-64kRed Hat / RHEL
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-64k-coreRed Hat / RHEL
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-64k-coreRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-64k-debugRed Hat / RHEL
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-64k-debugRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-64k-debug-coreRed Hat / RHEL
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-64k-debug-coreRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-64k-debug-debuginfoRocky
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-64k-debug-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-64k-debug-develRocky
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-64k-debug-develRed Hat / RHEL
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-64k-debug-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-64k-debug-devel-matchedRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-64k-debug-modulesRed Hat / RHEL
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-64k-debug-modulesRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-64k-debug-modules-coreRocky
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-64k-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-64k-debug-modules-extraRocky
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-64k-debug-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-64k-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-64k-debuginfoRocky
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-64k-develRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-64k-develRed Hat / RHEL
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-64k-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-64k-devel-matchedRocky
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-64k-modulesRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-64k-modulesRed Hat / RHEL
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-64k-modules-coreRocky
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-64k-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-64k-modules-extraRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-64k-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-abi-stablelistsRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-abi-stablelistsRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-coreRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-debugRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-debugRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-debug-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-debug-coreRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-debug-debuginfoRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-debug-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-debug-develRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-debug-develRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-debug-devel-matchedRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-debug-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-debug-modulesRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-debug-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-debug-modules-coreRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-debug-modules-extraRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-debug-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-debug-uki-virtRocky
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-debug-uki-virtRed Hat / RHEL
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-debuginfoRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-debuginfo-common-aarch64Red Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-debuginfo-common-aarch64Rocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-debuginfo-common-ppc64leRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-debuginfo-common-ppc64leRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-debuginfo-common-s390xRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-debuginfo-common-s390xRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-debuginfo-common-x86_64Rocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-develRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-develRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-devel-matchedRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-docRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-docRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-modulesRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-modules-coreRocky
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-modules-extraRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rtRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-rtRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-rt-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-rt-coreRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-rt-debugRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-debugRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-rt-debug-coreRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-debug-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-debug-debuginfoRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-debug-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-debug-develRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-rt-debug-develRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-rt-debug-kvmRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-rt-debug-kvmRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-debug-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-rt-debug-modulesRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-rt-debug-modules-coreRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-rt-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-debug-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-rt-debug-modules-extraRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-rt-debuginfoRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-debuginfo-common-x86_64Rocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
kernel-rt-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
kernel-rt-develRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-develRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-kvmRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-kvmRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-rt-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-modulesRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-modules-coreRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-rt-modules-extraRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-rt-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-toolsRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-toolsRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-tools-debuginfoRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-tools-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-tools-libsRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-tools-libsRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-tools-libs-develRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-tools-libs-develRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-uki-virtRed Hat / RHEL
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-uki-virtRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-uki-virt-addonsRocky
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-uki-virt-addonsRed Hat / RHEL
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-zfcpdumpRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-zfcpdumpRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-zfcpdump-coreRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-zfcpdump-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-zfcpdump-debuginfoRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-zfcpdump-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-zfcpdump-develRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-zfcpdump-develRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-zfcpdump-devel-matchedRocky
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-zfcpdump-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-zfcpdump-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-zfcpdump-modulesRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-zfcpdump-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-zfcpdump-modules-coreRocky
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-zfcpdump-modules-extraRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
kernel-zfcpdump-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
libperfRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
libperfRed Hat / RHEL
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
libperf-debuginfoRocky
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
libperf-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
perfRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
perfRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
perf-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
perf-debuginfoRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
python3-perfRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
python3-perfRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
python3-perf-debuginfoRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
python3-perf-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
rtlaRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
rtlaRed Hat / RHEL
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
rvRocky
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
rvRed Hat / RHEL
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.16.1.el9_5RHSA-2024:10939
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
linuxUbuntu
Fixed in:5.4.0-208.228USN-7293-1
Fixed in:5.15.0-127.137USN-7166-1
Fixed in:6.8.0-54.56USN-7301-1
linux-awsUbuntu
Fixed in:5.4.0-1140.150USN-7294-2
Fixed in:5.15.0-1073.79USN-7166-2
Fixed in:6.8.0-1023.25USN-7311-1
linux-aws-5.15Ubuntu
Fixed in:5.15.0-1073.79~20.04.1USN-7166-2
linux-aws-5.4Ubuntu
Fixed in:5.4.0-1142.152~18.04.1USN-7401-1
linux-aws-6.8Ubuntu
Fixed in:6.8.0-1023.25~22.04.1USN-7311-1
linux-azureUbuntu
Fixed in:5.4.0-1145.152USN-7294-1
Fixed in:5.15.0-1078.87USN-7186-2
Fixed in:6.8.0-1025.30USN-7384-1
linux-azure-5.15Ubuntu
Fixed in:5.15.0-1078.87~20.04.1USN-7194-1
linux-azure-5.4Ubuntu
Fixed in:5.4.0-1145.152~18.04.1USN-7294-1
linux-azure-6.8Ubuntu
Fixed in:6.8.0-1025.30~22.04.1USN-7384-2
linux-azure-nvidiaUbuntu
Fixed in:6.8.0-1014.15USN-7468-1
linux-bluefieldUbuntu
Fixed in:5.4.0-1099.106USN-7294-1
linux-fipsUbuntu
Fixed in:5.4.0-1116.126USN-7393-1
linux-gcpUbuntu
Fixed in:5.4.0-1143.152USN-7294-1
Fixed in:5.15.0-1072.80USN-7166-1
Fixed in:6.8.0-1024.26USN-7304-1
linux-gcp-5.15Ubuntu
Fixed in:5.15.0-1072.80~20.04.1USN-7166-1
linux-gcp-5.4Ubuntu
Fixed in:5.4.0-1143.152~18.04.1USN-7294-1
linux-gcp-6.8Ubuntu
Fixed in:6.8.0-1024.26~22.04.1USN-7303-3
linux-gkeUbuntu
Fixed in:5.15.0-1070.76USN-7166-1
Fixed in:6.8.0-1019.23USN-7304-1
linux-gkeopUbuntu
Fixed in:5.15.0-1056.63USN-7166-1
Fixed in:6.8.0-1006.8USN-7304-1
linux-hwe-5.15Ubuntu
Fixed in:5.15.0-127.137~20.04.1USN-7166-3
linux-hwe-5.4Ubuntu
Fixed in:5.4.0-208.228~18.04.1USN-7293-1
linux-hwe-6.8Ubuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-ibmUbuntu
Fixed in:5.4.0-1086.91USN-7294-3
Fixed in:5.15.0-1066.69USN-7166-1
Fixed in:6.8.0-1022.22USN-7385-1
linux-ibm-5.15Ubuntu
Fixed in:5.15.0-1066.69~20.04.1USN-7166-1
linux-ibm-5.4Ubuntu
Fixed in:5.4.0-1086.91~18.04.1USN-7294-1
linux-image-5.15.0-1039-xilinx-zynqmpUbuntu
Fixed in:5.15.0-1039.43USN-7166-4
linux-image-5.15.0-1056-gkeopUbuntu
Fixed in:5.15.0-1056.63USN-7166-1
linux-image-5.15.0-1066-ibmUbuntu
Fixed in:5.15.0-1066.69~20.04.1USN-7166-1
Fixed in:5.15.0-1066.69USN-7166-1
linux-image-5.15.0-1066-raspiUbuntu
Fixed in:5.15.0-1066.69USN-7166-1
linux-image-5.15.0-1068-nvidiaUbuntu
Fixed in:5.15.0-1068.69USN-7166-1
linux-image-5.15.0-1068-nvidia-lowlatencyUbuntu
Fixed in:5.15.0-1068.69USN-7166-1
linux-image-5.15.0-1070-gkeUbuntu
Fixed in:5.15.0-1070.76USN-7166-1
linux-image-5.15.0-1070-kvmUbuntu
Fixed in:5.15.0-1070.75USN-7166-1
linux-image-5.15.0-1071-intel-iotgUbuntu
Fixed in:5.15.0-1071.77~20.04.1USN-7186-2
Fixed in:5.15.0-1071.77USN-7186-1
linux-image-5.15.0-1071-oracleUbuntu
Fixed in:5.15.0-1071.77~20.04.1USN-7166-1
Fixed in:5.15.0-1071.77USN-7166-1
linux-image-5.15.0-1072-gcpUbuntu
Fixed in:5.15.0-1072.80~20.04.1USN-7166-1
Fixed in:5.15.0-1072.80USN-7166-1
linux-image-5.15.0-1073-awsUbuntu
Fixed in:5.15.0-1073.79~20.04.1USN-7166-2
Fixed in:5.15.0-1073.79USN-7166-2
linux-image-5.15.0-1078-azureUbuntu
Fixed in:5.15.0-1078.87~20.04.1USN-7194-1
Fixed in:5.15.0-1078.87USN-7186-2
linux-image-5.15.0-127-genericUbuntu
Fixed in:5.15.0-127.137~20.04.1USN-7166-3
Fixed in:5.15.0-127.137USN-7166-1
linux-image-5.15.0-127-generic-64kUbuntu
Fixed in:5.15.0-127.137~20.04.1USN-7166-3
Fixed in:5.15.0-127.137USN-7166-1
linux-image-5.15.0-127-generic-lpaeUbuntu
Fixed in:5.15.0-127.137~20.04.1USN-7166-3
Fixed in:5.15.0-127.137USN-7166-1
linux-image-5.15.0-127-lowlatencyUbuntu
Fixed in:5.15.0-127.137~20.04.1USN-7166-1
Fixed in:5.15.0-127.137USN-7166-1
linux-image-5.15.0-127-lowlatency-64kUbuntu
Fixed in:5.15.0-127.137~20.04.1USN-7166-1
Fixed in:5.15.0-127.137USN-7166-1
linux-image-5.4.0-1048-iotUbuntu
Fixed in:5.4.0-1048.51USN-7413-1
linux-image-5.4.0-1058-xilinx-zynqmpUbuntu
Fixed in:5.4.0-1058.62USN-7295-1
linux-image-5.4.0-1086-ibmUbuntu
Fixed in:5.4.0-1086.91~18.04.1USN-7294-1
Fixed in:5.4.0-1086.91USN-7294-3
linux-image-5.4.0-1099-bluefieldUbuntu
Fixed in:5.4.0-1099.106USN-7294-1
linux-image-5.4.0-1116-fipsUbuntu
Fixed in:5.4.0-1116.126USN-7393-1
linux-image-5.4.0-1127-kvmUbuntu
Fixed in:5.4.0-1127.136USN-7294-4
linux-image-5.4.0-1129-raspiUbuntu
Fixed in:5.4.0-1129.142~18.04.1USN-7540-1
Fixed in:5.4.0-1129.142USN-7539-1
linux-image-5.4.0-1138-oracleUbuntu
Fixed in:5.4.0-1138.147~18.04.1USN-7294-2
Fixed in:5.4.0-1138.147USN-7294-2
linux-image-5.4.0-1140-awsUbuntu
Fixed in:5.4.0-1140.150USN-7294-2
linux-image-5.4.0-1142-awsUbuntu
Fixed in:5.4.0-1142.152~18.04.1USN-7401-1
linux-image-5.4.0-1143-gcpUbuntu
Fixed in:5.4.0-1143.152~18.04.1USN-7294-1
Fixed in:5.4.0-1143.152USN-7294-1
linux-image-5.4.0-1145-azureUbuntu
Fixed in:5.4.0-1145.152~18.04.1USN-7294-1
Fixed in:5.4.0-1145.152USN-7294-1
linux-image-5.4.0-208-genericUbuntu
Fixed in:5.4.0-208.228~18.04.1USN-7293-1
Fixed in:5.4.0-208.228USN-7293-1
linux-image-5.4.0-208-generic-lpaeUbuntu
Fixed in:5.4.0-208.228USN-7293-1
linux-image-5.4.0-208-lowlatencyUbuntu
Fixed in:5.4.0-208.228~18.04.1USN-7293-1
Fixed in:5.4.0-208.228USN-7293-1
linux-image-6.11.0-1015-oemUbuntu
Fixed in:6.11.0-1015.15USN-7310-1
linux-image-6.8.0-1006-gkeopUbuntu
Fixed in:6.8.0-1006.8USN-7304-1
linux-image-6.8.0-1014-azure-nvidiaUbuntu
Fixed in:6.8.0-1014.15USN-7468-1
linux-image-6.8.0-1019-gkeUbuntu
Fixed in:6.8.0-1019.23USN-7304-1
linux-image-6.8.0-1019-raspiUbuntu
Fixed in:6.8.0-1019.23USN-7303-3
linux-image-6.8.0-1020-oracleUbuntu
Fixed in:6.8.0-1020.21~22.04.1USN-7303-2
Fixed in:6.8.0-1020.21USN-7303-2
linux-image-6.8.0-1020-oracle-64kUbuntu
Fixed in:6.8.0-1020.21~22.04.1USN-7303-2
Fixed in:6.8.0-1020.21USN-7303-2
linux-image-6.8.0-1022-ibmUbuntu
Fixed in:6.8.0-1022.22USN-7385-1
linux-image-6.8.0-1022-nvidiaUbuntu
Fixed in:6.8.0-1022.25~22.04.2USN-7303-1
Fixed in:6.8.0-1022.25USN-7303-1
linux-image-6.8.0-1022-nvidia-64kUbuntu
Fixed in:6.8.0-1022.25~22.04.2USN-7303-1
Fixed in:6.8.0-1022.25USN-7303-1
linux-image-6.8.0-1022-nvidia-lowlatencyUbuntu
Fixed in:6.8.0-1022.25.2USN-7303-1
linux-image-6.8.0-1022-nvidia-lowlatency-64kUbuntu
Fixed in:6.8.0-1022.25.2USN-7303-1
linux-image-6.8.0-1023-awsUbuntu
Fixed in:6.8.0-1023.25~22.04.1USN-7311-1
Fixed in:6.8.0-1023.25USN-7311-1
linux-image-6.8.0-1024-gcpUbuntu
Fixed in:6.8.0-1024.26~22.04.1USN-7303-3
Fixed in:6.8.0-1024.26USN-7304-1
linux-image-6.8.0-1024-gcp-64kUbuntu
Fixed in:6.8.0-1024.26~22.04.1USN-7303-3
Fixed in:6.8.0-1024.26USN-7304-1
linux-image-6.8.0-1024-oemUbuntu
Fixed in:6.8.0-1024.24USN-7386-1
linux-image-6.8.0-1025-azureUbuntu
Fixed in:6.8.0-1025.30~22.04.1USN-7384-2
Fixed in:6.8.0-1025.30USN-7384-1
linux-image-6.8.0-1025-azure-fdeUbuntu
Fixed in:6.8.0-1025.30~22.04.1USN-7384-2
Fixed in:6.8.0-1025.30USN-7384-1
linux-image-6.8.0-54-genericUbuntu
Fixed in:6.8.0-54.56USN-7301-1
linux-image-6.8.0-54-generic-64kUbuntu
Fixed in:6.8.0-54.56USN-7301-1
linux-image-6.8.0-54-lowlatencyUbuntu
Fixed in:6.8.0-54.56.1~22.04.1USN-7301-1
Fixed in:6.8.0-54.56.1USN-7301-1
linux-image-6.8.0-54-lowlatency-64kUbuntu
Fixed in:6.8.0-54.56.1~22.04.1USN-7301-1
Fixed in:6.8.0-54.56.1USN-7301-1
linux-image-6.8.0-57-genericUbuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-6.8.0-57-generic-64kUbuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-awsUbuntu
Fixed in:5.4.0.1142.152~18.04.1USN-7401-1
Fixed in:5.15.0.1073.79~20.04.1USN-7166-2
Fixed in:6.8.0-1023.25~22.04.1USN-7311-1
Fixed in:6.8.0-1023.25USN-7311-1
linux-image-aws-lts-20.04Ubuntu
Fixed in:5.4.0.1140.137USN-7294-2
linux-image-aws-lts-22.04Ubuntu
Fixed in:5.15.0.1073.73USN-7166-2
linux-image-aws-lts-24.04Ubuntu
Fixed in:6.8.0-1023.25USN-7311-1
linux-image-azureUbuntu
Fixed in:5.4.0.1145.152~18.04.1USN-7294-1
Fixed in:5.15.0.1078.87~20.04.1USN-7194-1
Fixed in:6.8.0-1025.30~22.04.1USN-7384-2
linux-image-azure-cvmUbuntu
Fixed in:5.15.0.1078.87~20.04.1USN-7194-1
linux-image-azure-fdeUbuntu
Fixed in:6.8.0-1025.30~22.04.1USN-7384-2
linux-image-azure-fde-lts-24.04Ubuntu
Fixed in:6.8.0-1025.30USN-7384-1
linux-image-azure-lts-20.04Ubuntu
Fixed in:5.4.0.1145.139USN-7294-1
linux-image-azure-lts-22.04Ubuntu
Fixed in:5.15.0.1078.76USN-7186-2
linux-image-azure-lts-24.04Ubuntu
Fixed in:6.8.0-1025.30USN-7384-1
linux-image-azure-nvidiaUbuntu
Fixed in:6.8.0-1014.15USN-7468-1
linux-image-bluefieldUbuntu
Fixed in:5.4.0.1099.95USN-7294-1
linux-image-fipsUbuntu
Fixed in:5.4.0.1116.113USN-7393-1
linux-image-gcpUbuntu
Fixed in:5.4.0.1143.152~18.04.1USN-7294-1
Fixed in:5.15.0.1072.80~20.04.1USN-7166-1
Fixed in:6.8.0-1024.26~22.04.1USN-7303-3
Fixed in:6.8.0-1024.26USN-7304-1
linux-image-gcp-64kUbuntu
Fixed in:6.8.0-1024.26~22.04.1USN-7303-3
Fixed in:6.8.0-1024.26USN-7304-1
linux-image-gcp-64k-lts-24.04Ubuntu
Fixed in:6.8.0-1024.26USN-7304-1
linux-image-gcp-lts-20.04Ubuntu
Fixed in:5.4.0.1143.145USN-7294-1
linux-image-gcp-lts-22.04Ubuntu
Fixed in:5.15.0.1072.68USN-7166-1
linux-image-gcp-lts-24.04Ubuntu
Fixed in:6.8.0-1024.26USN-7304-1
linux-image-genericUbuntu
Fixed in:5.4.0.208.204USN-7293-1
Fixed in:5.15.0.127.126USN-7166-1
Fixed in:6.8.0-54.56USN-7301-1
linux-image-generic-64kUbuntu
Fixed in:5.15.0.127.126USN-7166-1
Fixed in:6.8.0-54.56USN-7301-1
linux-image-generic-64k-hwe-20.04Ubuntu
Fixed in:5.15.0.127.137~20.04.1USN-7166-3
linux-image-generic-64k-hwe-22.04Ubuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-generic-hwe-18.04Ubuntu
Fixed in:5.4.0.208.228~18.04.1USN-7293-1
linux-image-generic-hwe-20.04Ubuntu
Fixed in:5.15.0.127.137~20.04.1USN-7166-3
linux-image-generic-hwe-22.04Ubuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-generic-lpaeUbuntu
Fixed in:5.4.0.208.204USN-7293-1
Fixed in:5.15.0.127.126USN-7166-1
Fixed in:6.8.0-54.56USN-7301-1
linux-image-generic-lpae-hwe-20.04Ubuntu
Fixed in:5.15.0.127.137~20.04.1USN-7166-3
linux-image-gkeUbuntu
Fixed in:5.15.0.1070.69USN-7166-1
Fixed in:6.8.0-1019.23USN-7304-1
linux-image-gke-5.15Ubuntu
Fixed in:5.15.0.1070.69USN-7166-1
linux-image-gkeopUbuntu
Fixed in:5.15.0.1056.55USN-7166-1
Fixed in:6.8.0-1006.8USN-7304-1
linux-image-gkeop-5.15Ubuntu
Fixed in:5.15.0.1056.55USN-7166-1
linux-image-gkeop-6.8Ubuntu
Fixed in:6.8.0-1006.8USN-7304-1
linux-image-ibmUbuntu
Fixed in:5.4.0.1086.91~18.04.1USN-7294-1
Fixed in:5.15.0.1066.69~20.04.1USN-7166-1
Fixed in:5.15.0.1066.62USN-7166-1
Fixed in:6.8.0-1022.22USN-7385-1
linux-image-ibm-classicUbuntu
Fixed in:6.8.0-1022.22USN-7385-1
linux-image-ibm-lts-20.04Ubuntu
Fixed in:5.4.0.1086.115USN-7294-3
linux-image-ibm-lts-24.04Ubuntu
Fixed in:6.8.0-1022.22USN-7385-1
linux-image-intelUbuntu
Fixed in:5.15.0.1071.77~20.04.1USN-7186-2
linux-image-intel-iotgUbuntu
Fixed in:5.15.0.1071.77~20.04.1USN-7186-2
Fixed in:5.15.0.1071.71USN-7186-1
linux-image-kvmUbuntu
Fixed in:5.4.0.1127.123USN-7294-4
Fixed in:5.15.0.1070.66USN-7166-1
Fixed in:6.8.0-54.56USN-7301-1
linux-image-lowlatencyUbuntu
Fixed in:5.4.0.208.204USN-7293-1
Fixed in:5.15.0.127.115USN-7166-1
Fixed in:6.8.0-54.56.1USN-7301-1
linux-image-lowlatency-64kUbuntu
Fixed in:5.15.0.127.115USN-7166-1
Fixed in:6.8.0-54.56.1USN-7301-1
linux-image-lowlatency-64k-hwe-20.04Ubuntu
Fixed in:5.15.0.127.137~20.04.1USN-7166-1
linux-image-lowlatency-64k-hwe-22.04Ubuntu
Fixed in:6.8.0-54.56.1~22.04.1USN-7301-1
linux-image-lowlatency-hwe-18.04Ubuntu
Fixed in:5.4.0.208.228~18.04.1USN-7293-1
linux-image-lowlatency-hwe-20.04Ubuntu
Fixed in:5.15.0.127.137~20.04.1USN-7166-1
linux-image-lowlatency-hwe-22.04Ubuntu
Fixed in:6.8.0-54.56.1~22.04.1USN-7301-1
linux-image-nvidiaUbuntu
Fixed in:5.15.0.1068.68USN-7166-1
Fixed in:6.8.0-1022.25USN-7303-1
linux-image-nvidia-6.8Ubuntu
Fixed in:6.8.0-1022.25~22.04.2USN-7303-1
linux-image-nvidia-64kUbuntu
Fixed in:6.8.0-1022.25USN-7303-1
linux-image-nvidia-64k-6.8Ubuntu
Fixed in:6.8.0-1022.25~22.04.2USN-7303-1
linux-image-nvidia-64k-hwe-22.04Ubuntu
Fixed in:6.8.0-1022.25~22.04.2USN-7303-1
linux-image-nvidia-hwe-22.04Ubuntu
Fixed in:6.8.0-1022.25~22.04.2USN-7303-1
linux-image-nvidia-lowlatencyUbuntu
Fixed in:5.15.0.1068.68USN-7166-1
Fixed in:6.8.0-1022.25.2USN-7303-1
linux-image-nvidia-lowlatency-64kUbuntu
Fixed in:6.8.0-1022.25.2USN-7303-1
linux-image-oemUbuntu
Fixed in:5.4.0.208.228~18.04.1USN-7293-1
Fixed in:5.4.0.208.204USN-7293-1
linux-image-oem-20.04Ubuntu
Fixed in:5.15.0.127.137~20.04.1USN-7166-3
linux-image-oem-20.04bUbuntu
Fixed in:5.15.0.127.137~20.04.1USN-7166-3
linux-image-oem-20.04cUbuntu
Fixed in:5.15.0.127.137~20.04.1USN-7166-3
linux-image-oem-20.04dUbuntu
Fixed in:5.15.0.127.137~20.04.1USN-7166-3
linux-image-oem-22.04Ubuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-oem-22.04aUbuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-oem-22.04bUbuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-oem-22.04cUbuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-oem-22.04dUbuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-oem-24.04Ubuntu
Fixed in:6.8.0-1024.24USN-7386-1
linux-image-oem-24.04aUbuntu
Fixed in:6.8.0-1024.24USN-7386-1
linux-image-oem-24.04bUbuntu
Fixed in:6.11.0-1015.15USN-7310-1
linux-image-oem-osp1Ubuntu
Fixed in:5.4.0.208.228~18.04.1USN-7293-1
Fixed in:5.4.0.208.204USN-7293-1
linux-image-oracleUbuntu
Fixed in:5.4.0.1138.147~18.04.1USN-7294-2
Fixed in:5.15.0.1071.77~20.04.1USN-7166-1
Fixed in:6.8.0-1020.21~22.04.1USN-7303-2
Fixed in:6.8.0-1020.21USN-7303-2
linux-image-oracle-64kUbuntu
Fixed in:6.8.0-1020.21~22.04.1USN-7303-2
Fixed in:6.8.0-1020.21USN-7303-2
linux-image-oracle-64k-lts-24.04Ubuntu
Fixed in:6.8.0-1020.21USN-7303-2
linux-image-oracle-lts-20.04Ubuntu
Fixed in:5.4.0.1138.131USN-7294-2
linux-image-oracle-lts-22.04Ubuntu
Fixed in:5.15.0.1071.67USN-7166-1
linux-image-oracle-lts-24.04Ubuntu
Fixed in:6.8.0-1020.21USN-7303-2
linux-image-raspiUbuntu
Fixed in:5.4.0.1129.160USN-7539-1
Fixed in:5.15.0.1066.64USN-7166-1
Fixed in:6.8.0-1019.23USN-7303-3
linux-image-raspi-hwe-18.04Ubuntu
Fixed in:5.4.0.1129.142~18.04.1USN-7540-1
linux-image-raspi-nolpaeUbuntu
Fixed in:5.15.0.1066.64USN-7166-1
linux-image-raspi2Ubuntu
Fixed in:5.4.0.1129.160USN-7539-1
linux-image-snapdragon-hwe-18.04Ubuntu
Fixed in:5.4.0.208.228~18.04.1USN-7293-1
linux-image-virtualUbuntu
Fixed in:5.4.0.208.204USN-7293-1
Fixed in:5.15.0.127.126USN-7166-1
Fixed in:6.8.0-54.56USN-7301-1
linux-image-virtual-hwe-18.04Ubuntu
Fixed in:5.4.0.208.228~18.04.1USN-7293-1
linux-image-virtual-hwe-20.04Ubuntu
Fixed in:5.15.0.127.137~20.04.1USN-7166-3
linux-image-virtual-hwe-22.04Ubuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-xilinx-zynqmpUbuntu
Fixed in:5.4.0.1058.58USN-7295-1
Fixed in:5.15.0.1039.43USN-7166-4
linux-intel-iotgUbuntu
Fixed in:5.15.0-1071.77USN-7186-1
linux-intel-iotg-5.15Ubuntu
Fixed in:5.15.0-1071.77~20.04.1USN-7186-2
linux-iotUbuntu
Fixed in:5.4.0-1048.51USN-7413-1
linux-kvmUbuntu
Fixed in:5.4.0-1127.136USN-7294-4
Fixed in:5.15.0-1070.75USN-7166-1
linux-lowlatencyUbuntu
Fixed in:5.15.0-127.137USN-7166-1
Fixed in:6.8.0-54.56.1USN-7301-1
linux-lowlatency-hwe-5.15Ubuntu
Fixed in:5.15.0-127.137~20.04.1USN-7166-1
linux-lowlatency-hwe-6.8Ubuntu
Fixed in:6.8.0-54.56.1~22.04.1USN-7301-1
linux-nvidiaUbuntu
Fixed in:5.15.0-1068.69USN-7166-1
Fixed in:6.8.0-1022.25USN-7303-1
linux-nvidia-6.8Ubuntu
Fixed in:6.8.0-1022.25~22.04.2USN-7303-1
linux-nvidia-lowlatencyUbuntu
Fixed in:6.8.0-1022.25.2USN-7303-1
linux-oem-6.11Ubuntu
Fixed in:6.11.0-1015.15USN-7310-1
linux-oem-6.8Ubuntu
Fixed in:6.8.0-1024.24USN-7386-1
linux-oracleUbuntu
Fixed in:5.4.0-1138.147USN-7294-2
Fixed in:5.15.0-1071.77USN-7166-1
Fixed in:6.8.0-1020.21USN-7303-2
linux-oracle-5.15Ubuntu
Fixed in:5.15.0-1071.77~20.04.1USN-7166-1
linux-oracle-5.4Ubuntu
Fixed in:5.4.0-1138.147~18.04.1USN-7294-2
linux-oracle-6.8Ubuntu
Fixed in:6.8.0-1020.21~22.04.1USN-7303-2
linux-raspiUbuntu
Fixed in:5.4.0-1129.142USN-7539-1
Fixed in:5.15.0-1066.69USN-7166-1
Fixed in:6.8.0-1019.23USN-7303-3
linux-raspi-5.4Ubuntu
Fixed in:5.4.0-1129.142~18.04.1USN-7540-1
linux-xilinx-zynqmpUbuntu
Fixed in:5.4.0-1058.62USN-7295-1
Fixed in:5.15.0-1039.43USN-7166-4

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.28%probability of exploitation in 30 days
20thpercentile

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

References

Related Vulnerabilities

Other CWE-476 (NULL Pointer Dereference) vulnerabilities, ordered by exploit likelihood. View all

CVESeverityCVSSEPSSExploitedFix
CVE-2023-21758High7.592%-Fix
CVE-2023-21547High7.588%-Fix
CVE-2014-3470Medium4.386%-Fix
CVE-2021-44224High8.282%-Fix
CVE-2016-0742High7.582%-Fix
CVE-2009-1386Medium5.080%-Fix
Embed a live status badge for CVE-2024-49949
CVE-2024-49949 severity badge

Markdown

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

HTML

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