CVE & CISA-KEV Catalog

CVE-2024-35877

MEDIUM
5.5
CVSS v3
NVD

Description

In the Linux kernel, the following vulnerability has been resolved: x86/mm/pat: fix VM_PAT handling in COW mappings PAT handling won't do the right thing in COW mappings: the first PTE (or, in fact, all PTEs) can be replaced during write faults to point at anon folios. Reliably recovering the correct PFN and cachemode using follow_phys() from PTEs will not work in COW mappings. Using follow_phys(), we might just get the address+protection of the anon folio (which is very wrong), or fail on swap/nonswap entries, failing follow_phys() and triggering a WARN_ON_ONCE() in untrack_pfn() and track_pfn_copy(), not properly calling free_pfn_range(). In free_pfn_range(), we either wouldn't call memtype_free() or would call it with the wrong range, possibly leaking memory. To fix that, let's update follow_phys() to refuse returning anon folios, and fallback to using the stored PFN inside vma->vm_pgoff for COW mappings if we run into that. We will now properly handle untrack_pfn() with COW mappings, where we don't need the cachemode. We'll have to fail fork()->track_pfn_copy() if the first page was replaced by an anon folio, though: we'd have to store the cachemode in the VMA to make this work, likely growing the VMA size. For now, lets keep it simple and let track_pfn_copy() just fail in that case: it would have failed in the past with swap/nonswap entries already, and it would have done the wrong thing with anon folios. Simple reproducer to trigger the WARN_ON_ONCE() in untrack_pfn(): <--- C reproducer ---> #include <stdio.h> #include <sys/mman.h> #include <unistd.h> #include <liburing.h> int main(void) { struct io_uring_params p = {}; int ring_fd; size_t size; char *map; ring_fd = io_uring_setup(1, &p); if (ring_fd < 0) { perror("io_uring_setup"); return 1; } size = p.sq_off.array + p.sq_entries * sizeof(unsigned); /* Map the submission queue ring MAP_PRIVATE */ map = mmap(0, size, PROT_READ | PROT_WRITE, MAP_PRIVATE, ring_fd, IORING_OFF_SQ_RING); if (map == MAP_FAILED) { perror("mmap"); return 1; } /* We have at least one page. Let's COW it. */ *map = 0; pause(); return 0; } <--- C reproducer ---> On a system with 16 GiB RAM and swap configured: # ./iouring & # memhog 16G # killall iouring [ 301.552930] ------------[ cut here ]------------ [ 301.553285] WARNING: CPU: 7 PID: 1402 at arch/x86/mm/pat/memtype.c:1060 untrack_pfn+0xf4/0x100 [ 301.553989] Modules linked in: binfmt_misc nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_g [ 301.558232] CPU: 7 PID: 1402 Comm: iouring Not tainted 6.7.5-100.fc38.x86_64 #1 [ 301.558772] Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS rel-1.16.3-0-ga6ed6b701f0a-prebu4 [ 301.559569] RIP: 0010:untrack_pfn+0xf4/0x100 [ 301.559893] Code: 75 c4 eb cf 48 8b 43 10 8b a8 e8 00 00 00 3b 6b 28 74 b8 48 8b 7b 30 e8 ea 1a f7 000 [ 301.561189] RSP: 0018:ffffba2c0377fab8 EFLAGS: 00010282 [ 301.561590] RAX: 00000000ffffffea RBX: ffff9208c8ce9cc0 RCX: 000000010455e047 [ 301.562105] RDX: 07fffffff0eb1e0a RSI: 0000000000000000 RDI: ffff9208c391d200 [ 301.562628] RBP: 0000000000000000 R08: ffffba2c0377fab8 R09: 0000000000000000 [ 301.563145] R10: ffff9208d2292d50 R11: 0000000000000002 R12: 00007fea890e0000 [ 301.563669] R13: 0000000000000000 R14: ffffba2c0377fc08 R15: 0000000000000000 [ 301.564186] FS: 0000000000000000(0000) GS:ffff920c2fbc0000(0000) knlGS:0000000000000000 [ 301.564773] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 301.565197] CR2: 00007fea88ee8a20 CR3: 00000001033a8000 CR4: 0000000000750ef0 [ 301.565725] PKRU: 55555554 [ 301.565944] Call Trace: [ 301.566148] <TASK> [ 301.566325] ? untrack_pfn+0xf4/0x100 [ 301.566618] ? __warn+0x81/0x130 [ 301.566876] ? untrack_pfn+0xf4/0x100 [ 3 ---truncated---

How to fix

Remediation Available
linuxDebian
Fixed in:5.10.216-1CVE-2024-35877
Fixed in:6.1.85-1CVE-2024-35877
Fixed in:6.8.9-1CVE-2024-35877
Fixed in:6.8.9-1CVE-2024-35877
bpftoolRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:7.3.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.68.1.el9_4RHSA-2025:7526
bpftoolRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:7.3.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:7.3.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.68.1.el9_4RHSA-2025:7526
bpftool-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:7.3.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:7.3.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
bpftool-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:7.3.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:7.3.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
kernelRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernelRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-64kRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-64kRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-64k-coreRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-64k-coreRocky
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debugRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-64k-debugRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-64k-debug-coreRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-64k-debug-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debug-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debug-debuginfoRocky
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debug-develRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-64k-debug-develRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-64k-debug-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-64k-debug-devel-matchedRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-64k-debug-modulesRed Hat / RHEL
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debug-modulesRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-64k-debug-modules-coreRocky
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debug-modules-extraRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-64k-debug-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debuginfoRocky
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-develRocky
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-develRed Hat / RHEL
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-64k-devel-matchedRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-64k-modulesRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-64k-modulesRed Hat / RHEL
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-modules-coreRocky
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-64k-modules-extraRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-64k-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-abi-stablelistsRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-abi-stablelistsRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-coreRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-cross-headersRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-cross-headersRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debugRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-debugRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debug-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-debug-coreRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debug-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debug-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-debug-develRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-debug-develRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debug-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-debug-devel-matchedRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debug-modulesRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debug-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debug-modules-coreRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-debug-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-debug-modules-extraRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debug-uki-virtRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-debug-uki-virtRocky
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-debuginfo-common-aarch64Red Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-debuginfo-common-aarch64Rocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debuginfo-common-ppc64leRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debuginfo-common-ppc64leRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-debuginfo-common-s390xRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debuginfo-common-s390xRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debuginfo-common-x86_64Rocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-develRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-develRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-devel-matchedRocky
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-docRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-docRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-headersRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-headersRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-modulesRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-modules-coreRocky
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-modules-extraRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rtRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-rtRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-rt-coreRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-debugRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-debugRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
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-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-debug-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
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-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-debug-develRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-debug-develRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-debug-kvmRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-debug-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-rt-debug-modules-coreRocky
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
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.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-rt-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
kernel-rt-debuginfo-common-x86_64Rocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
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.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-develRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-rt-kvmRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-kvmRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
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.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-modules-coreRocky
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-rt-modules-extraRocky
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-toolsRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-toolsRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-tools-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-tools-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-tools-libsRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-tools-libsRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-tools-libs-develRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-tools-libs-develRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-uki-virtRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-uki-virtRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-uki-virt-addonsRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-uki-virt-addonsRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-zfcpdumpRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-zfcpdumpRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-zfcpdump-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-zfcpdump-coreRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-zfcpdump-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-zfcpdump-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-zfcpdump-develRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-zfcpdump-develRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-zfcpdump-devel-matchedRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-zfcpdump-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-zfcpdump-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-zfcpdump-modulesRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-zfcpdump-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
kernel-zfcpdump-modules-coreRocky
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-zfcpdump-modules-extraRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-zfcpdump-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
libperfRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
libperfRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
libperf-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
libperf-debuginfoRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
perfRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
perfRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
perf-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
perf-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
python3-perfRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
python3-perfRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
python3-perf-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
python3-perf-debuginfoRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
rtlaRed Hat / RHEL
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
rtlaRocky
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
rvRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
rvRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.68.1.el9_4RHSA-2025:7526
linuxUbuntu
Fixed in:4.4.0-261.295USN-7148-1
Fixed in:4.15.0-231.243USN-7121-1
Fixed in:5.4.0-189.209USN-6896-1
Fixed in:5.15.0-116.126USN-6898-1
Fixed in:6.8.0-38.38USN-6893-1
linux-awsUbuntu
Fixed in:4.4.0-1138.144USN-7148-1
Fixed in:4.4.0-1176.191USN-7148-1
Fixed in:4.15.0-1175.188USN-7121-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-hweUbuntu
Fixed in:4.15.0-1175.188~16.04.1USN-7121-1
linux-azureUbuntu
Fixed in:4.15.0-1183.198~14.04.1USN-7121-2
Fixed in:4.15.0-1183.198~16.04.1USN-7121-1
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-1183.198USN-7121-1
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-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-1168.185~16.04.1USN-7121-1
Fixed in:5.4.0-1132.141USN-6896-1
Fixed in:5.15.0-1064.72USN-6898-1
Fixed in:6.8.0-1010.11USN-6893-1
linux-gcp-4.15Ubuntu
Fixed in:4.15.0-1168.185USN-7121-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-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-231.243~16.04.1USN-7121-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-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-1137-oracleUbuntu
Fixed in:4.15.0-1137.148~16.04.1USN-7121-3
Fixed in:4.15.0-1137.148USN-7121-1
linux-image-4.15.0-1158-kvmUbuntu
Fixed in:4.15.0-1158.163USN-7121-1
linux-image-4.15.0-1168-gcpUbuntu
Fixed in:4.15.0-1168.185~16.04.1USN-7121-1
Fixed in:4.15.0-1168.185USN-7121-1
linux-image-4.15.0-1175-awsUbuntu
Fixed in:4.15.0-1175.188~16.04.1USN-7121-1
Fixed in:4.15.0-1175.188USN-7121-1
linux-image-4.15.0-1183-azureUbuntu
Fixed in:4.15.0-1183.198~14.04.1USN-7121-2
Fixed in:4.15.0-1183.198~16.04.1USN-7121-1
Fixed in:4.15.0-1183.198USN-7121-1
linux-image-4.15.0-231-genericUbuntu
Fixed in:4.15.0-231.243~16.04.1USN-7121-1
Fixed in:4.15.0-231.243USN-7121-1
linux-image-4.15.0-231-lowlatencyUbuntu
Fixed in:4.15.0-231.243~16.04.1USN-7121-1
Fixed in:4.15.0-231.243USN-7121-1
linux-image-4.4.0-1138-awsUbuntu
Fixed in:4.4.0-1138.144USN-7148-1
linux-image-4.4.0-1139-kvmUbuntu
Fixed in:4.4.0-1139.149USN-7148-1
linux-image-4.4.0-1176-awsUbuntu
Fixed in:4.4.0-1176.191USN-7148-1
linux-image-4.4.0-261-genericUbuntu
Fixed in:4.4.0-261.295~14.04.1USN-7148-1
Fixed in:4.4.0-261.295USN-7148-1
linux-image-4.4.0-261-lowlatencyUbuntu
Fixed in:4.4.0-261.295~14.04.1USN-7148-1
Fixed in:4.4.0-261.295USN-7148-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.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.1138.135USN-7148-1
Fixed in:4.4.0.1176.180USN-7148-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.8.0-1011.12USN-6893-3
linux-image-aws-hweUbuntu
Fixed in:4.15.0.1175.188~16.04.1USN-7121-1
linux-image-aws-lts-18.04Ubuntu
Fixed in:4.15.0.1175.173USN-7121-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.1183.198~14.04.1USN-7121-2
Fixed in:4.15.0.1183.198~16.04.1USN-7121-1
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.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.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.1183.151USN-7121-1
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.1168.185~16.04.1USN-7121-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.8.0-1010.11USN-6893-1
linux-image-gcp-lts-18.04Ubuntu
Fixed in:4.15.0.1168.181USN-7121-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.261.267USN-7148-1
Fixed in:4.15.0.231.215USN-7121-1
Fixed in:5.4.0.189.187USN-6896-1
Fixed in:5.15.0.116.116USN-6898-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.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-24.04Ubuntu
Fixed in:6.8.0-38.38USN-6893-1
linux-image-generic-hwe-16.04Ubuntu
Fixed in:4.15.0.231.243~16.04.1USN-7121-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-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.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.261.295~14.04.1USN-7148-1
Fixed in:4.4.0.261.267USN-7148-1
linux-image-gkeUbuntu
Fixed in:4.15.0.1168.185~16.04.1USN-7121-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.1139.136USN-7148-1
Fixed in:4.15.0.1158.149USN-7121-1
Fixed in:5.4.0.1116.112USN-6896-1
Fixed in:5.15.0.1062.58USN-6898-1
Fixed in:6.8.0-38.38USN-6893-1
linux-image-lowlatencyUbuntu
Fixed in:4.4.0.261.267USN-7148-1
Fixed in:4.15.0.231.215USN-7121-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-hwe-16.04Ubuntu
Fixed in:4.15.0.231.243~16.04.1USN-7121-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-lts-xenialUbuntu
Fixed in:4.4.0.261.295~14.04.1USN-7148-1
Fixed in:4.4.0.261.267USN-7148-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-64kUbuntu
Fixed in:6.8.0-1009.9USN-6893-2
linux-image-nvidia-lowlatencyUbuntu
Fixed in:5.15.0.1060.60USN-6898-1
linux-image-oemUbuntu
Fixed in:4.15.0.231.243~16.04.1USN-7121-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-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.1137.148~16.04.1USN-7121-3
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.8.0-1008.8USN-6918-1
linux-image-oracle-64kUbuntu
Fixed in:6.8.0-1008.8USN-6918-1
linux-image-oracle-lts-18.04Ubuntu
Fixed in:4.15.0.1137.142USN-7121-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.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
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-virtualUbuntu
Fixed in:4.4.0.261.267USN-7148-1
Fixed in:4.15.0.231.215USN-7121-1
Fixed in:5.4.0.189.187USN-6896-1
Fixed in:5.15.0.116.116USN-6898-1
Fixed in:6.8.0-38.38USN-6893-1
linux-image-virtual-hwe-16.04Ubuntu
Fixed in:4.15.0.231.243~16.04.1USN-7121-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-24.04Ubuntu
Fixed in:6.8.0-38.38USN-6893-1
linux-image-virtual-lts-xenialUbuntu
Fixed in:4.4.0.261.295~14.04.1USN-7148-1
Fixed in:4.4.0.261.267USN-7148-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-1139.149USN-7148-1
Fixed in:4.15.0-1158.163USN-7121-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-lts-xenialUbuntu
Fixed in:4.4.0-261.295~14.04.1USN-7148-1
linux-nvidiaUbuntu
Fixed in:5.15.0-1060.61USN-6898-1
Fixed in:6.8.0-1009.9USN-6893-2
linux-oem-6.8Ubuntu
Fixed in:6.8.0-1008.8USN-6893-1
linux-oracleUbuntu
Fixed in:4.15.0-1137.148~16.04.1USN-7121-3
Fixed in:4.15.0-1137.148USN-7121-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-raspiUbuntu
Fixed in:5.4.0-1112.124USN-6896-4
Fixed in:5.15.0-1058.61USN-6919-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-xilinx-zynqmpUbuntu
Fixed in:5.4.0-1047.51USN-6896-3
Fixed in:5.15.0-1035.39USN-7019-1

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

CVSS v3 Vector

Exploitability

Attack VectorLocal
Attack ComplexityLow
Privileges RequiredLow
User InteractionNone
ScopeUnchanged

Impact

ConfidentialityNone
IntegrityNone
AvailabilityHigh

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

Exploit Intelligence

0.25%probability of exploitation in 30 days
16thpercentile

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

References

Related Vulnerabilities

Other CWE-401 (Missing Release of Memory (Memory Leak)) vulnerabilities, ordered by exploit likelihood. View all

CVESeverityCVSSEPSSExploitedFix
CVE-2020-13934High7.564%-Fix
CVE-2016-6304High7.563%-Fix
CVE-2019-12265Medium5.355%-Fix
CVE-2001-0136Medium5.045%--
CVE-2016-4232High7.536%--
CVE-2001-0543Medium5.021%--
Embed a live status badge for CVE-2024-35877
CVE-2024-35877 severity badge

Markdown

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

HTML

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