CVE & CISA-KEV Catalog

CVE-2024-26759

MEDIUM
5.5
CVSS v3
NVD

Description

In the Linux kernel, the following vulnerability has been resolved: mm/swap: fix race when skipping swapcache When skipping swapcache for SWP_SYNCHRONOUS_IO, if two or more threads swapin the same entry at the same time, they get different pages (A, B). Before one thread (T0) finishes the swapin and installs page (A) to the PTE, another thread (T1) could finish swapin of page (B), swap_free the entry, then swap out the possibly modified page reusing the same entry. It breaks the pte_same check in (T0) because PTE value is unchanged, causing ABA problem. Thread (T0) will install a stalled page (A) into the PTE and cause data corruption. One possible callstack is like this: CPU0 CPU1 ---- ---- do_swap_page() do_swap_page() with same entry <direct swapin path> <direct swapin path> <alloc page A> <alloc page B> swap_read_folio() <- read to page A swap_read_folio() <- read to page B <slow on later locks or interrupt> <finished swapin first> ... set_pte_at() swap_free() <- entry is free <write to page B, now page A stalled> <swap out page B to same swap entry> pte_same() <- Check pass, PTE seems unchanged, but page A is stalled! swap_free() <- page B content lost! set_pte_at() <- staled page A installed! And besides, for ZRAM, swap_free() allows the swap device to discard the entry content, so even if page (B) is not modified, if swap_read_folio() on CPU0 happens later than swap_free() on CPU1, it may also cause data loss. To fix this, reuse swapcache_prepare which will pin the swap entry using the cache flag, and allow only one thread to swap it in, also prevent any parallel code from putting the entry in the cache. Release the pin after PT unlocked. Racers just loop and wait since it's a rare and very short event. A schedule_timeout_uninterruptible(1) call is added to avoid repeated page faults wasting too much CPU, causing livelock or adding too much noise to perf statistics. A similar livelock issue was described in commit 029c4628b2eb ("mm: swap: get rid of livelock in swapin readahead") Reproducer: This race issue can be triggered easily using a well constructed reproducer and patched brd (with a delay in read path) [1]: With latest 6.8 mainline, race caused data loss can be observed easily: $ gcc -g -lpthread test-thread-swap-race.c && ./a.out Polulating 32MB of memory region... Keep swapping out... Starting round 0... Spawning 65536 workers... 32746 workers spawned, wait for done... Round 0: Error on 0x5aa00, expected 32746, got 32743, 3 data loss! Round 0: Error on 0x395200, expected 32746, got 32743, 3 data loss! Round 0: Error on 0x3fd000, expected 32746, got 32737, 9 data loss! Round 0 Failed, 15 data loss! This reproducer spawns multiple threads sharing the same memory region using a small swap device. Every two threads updates mapped pages one by one in opposite direction trying to create a race, with one dedicated thread keep swapping out the data out using madvise. The reproducer created a reproduce rate of about once every 5 minutes, so the race should be totally possible in production. After this patch, I ran the reproducer for over a few hundred rounds and no data loss observed. Performance overhead is minimal, microbenchmark swapin 10G from 32G zram: Before: 10934698 us After: 11157121 us Cached: 13155355 us (Dropping SWP_SYNCHRONOUS_IO flag) [[email protected]: v4]

How to fix

Remediation Available
linuxDebian
Fixed in:6.1.82-1CVE-2024-26759
Fixed in:6.7.7-1CVE-2024-26759
Fixed in:6.7.7-1CVE-2024-26759
bpftoolRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
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.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
bpftoolRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
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.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.57.1.el9_4RHSA-2025:2270
bpftool-debuginfoRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
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.57.1.el9_4RHSA-2025:2270
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
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
bpftool-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.57.1.el9_4RHSA-2025:2270
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.57.1.el9_4RHSA-2025:2270
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
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
kernelRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.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.57.1.el9_4RHSA-2025:2270
kernelRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
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.11.1.el9_5RHSA-2024:9315
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.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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-64kRed Hat / RHEL
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64kRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-64k-coreRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.11.1.el9_5RHSA-2024:9315
kernel-64k-debugRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debug-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debug-coreRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debug-debuginfoRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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-503.11.1.el9_5RHSA-2024:9315
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-64k-debug-develRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-64k-debug-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.11.1.el9_5RHSA-2024:9315
kernel-64k-debug-modulesRed Hat / RHEL
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.57.1.el9_4RHSA-2025:2270
kernel-64k-debug-modules-coreRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-64k-debug-modules-extraRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debug-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-64k-debuginfoRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-develRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.57.1.el9_4RHSA-2025:2270
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-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-devel-matchedRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.11.1.el9_5RHSA-2024:9315
kernel-64k-modulesRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-64k-modules-coreRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-64k-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-modules-extraRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-abi-stablelistsRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-abi-stablelistsRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-coreRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.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-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-cross-headersRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
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-headersRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debugRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-debugRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
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.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debug-coreRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
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.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
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.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.11.1.el9_5RHSA-2024:9315
kernel-debug-debuginfoRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
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.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.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debug-develRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
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.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.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debug-develRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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-427.57.1.el9_4RHSA-2025:2270
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.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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-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.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-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.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.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-debug-modulesRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.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.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debug-modules-coreRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.11.1.el9_5RHSA-2024:9315
kernel-debug-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
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.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.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.11.1.el9_5RHSA-2024:9315
kernel-debug-modules-extraRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
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.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.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.57.1.el9_4RHSA-2025:2270
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.57.1.el9_4RHSA-2025:2270
kernel-debug-uki-virtRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debuginfoRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
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.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.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
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.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.11.1.el9_5RHSA-2024:9315
kernel-debuginfo-common-aarch64Red Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debuginfo-common-aarch64Rocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debuginfo-common-ppc64leRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-debuginfo-common-s390xRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-debuginfo-common-s390xRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-debuginfo-common-x86_64Rocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-develRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
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.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-develRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
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.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.11.1.el9_5RHSA-2024:9315
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-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.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.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.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.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.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.11.1.el9_5RHSA-2024:9315
kernel-docRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-docRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-headersRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
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:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-modulesRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.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.57.1.el9_4RHSA-2025:2270
kernel-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.57.1.el9_4RHSA-2025:2270
kernel-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.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.57.1.el9_4RHSA-2025:2270
kernel-modules-coreRocky
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.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.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-modules-extraRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rtRocky
Fixed in:0:4.18.0-553.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:4.18.0-553.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rtRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:4.18.0-553.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-coreRocky
Fixed in:0:4.18.0-553.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-debugRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-debugRocky
Fixed in:0:4.18.0-553.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-debug-coreRocky
Fixed in:0:4.18.0-553.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-debug-debuginfoRocky
Fixed in:0:4.18.0-553.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.8.1.rt7.349.el8_10RHSA-2024:4352
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.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-debug-develRocky
Fixed in:0:4.18.0-553.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-debug-develRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-debug-kvmRocky
Fixed in:0:4.18.0-553.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-debug-kvmRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-debug-modulesRocky
Fixed in:0:4.18.0-553.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-debug-modules-coreRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-debug-modules-extraRocky
Fixed in:0:4.18.0-553.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-debuginfoRocky
Fixed in:0:4.18.0-553.8.1.rt7.349.el8_10RHSA-2024:4352
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.11.1.el9_5RHSA-2024:9315
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.8.1.rt7.349.el8_10RHSA-2024:4352
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.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-debuginfo-common-x86_64Rocky
Fixed in:0:4.18.0-553.8.1.rt7.349.el8_10RHSA-2024:4352
kernel-rt-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:4.18.0-553.8.1.rt7.349.el8_10RHSA-2024:4352
kernel-rt-develRocky
Fixed in:0:4.18.0-553.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-develRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-kvmRocky
Fixed in:0:4.18.0-553.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-modulesRocky
Fixed in:0:4.18.0-553.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-modules-coreRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-rt-modules-extraRocky
Fixed in:0:4.18.0-553.8.1.rt7.349.el8_10RHSA-2024:4352
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-toolsRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
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.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.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-toolsRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.57.1.el9_4RHSA-2025:2270
kernel-tools-debuginfoRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.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.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-tools-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
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.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.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.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-tools-libsRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
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.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.11.1.el9_5RHSA-2024:9315
kernel-tools-libsRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
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.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-tools-libs-develRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-tools-libs-develRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.11.1.el9_5RHSA-2024:9315
kernel-uki-virtRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-uki-virt-addonsRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-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.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-zfcpdumpRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-zfcpdump-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-zfcpdump-coreRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-zfcpdump-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-zfcpdump-debuginfoRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-zfcpdump-develRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-zfcpdump-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-zfcpdump-devel-matchedRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-zfcpdump-modulesRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-zfcpdump-modules-coreRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-zfcpdump-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
kernel-zfcpdump-modules-extraRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
libperfRed 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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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
libperfRocky
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.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
libperf-debuginfoRocky
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.57.1.el9_4RHSA-2025:2270
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.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-503.11.1.el9_5RHSA-2024:9315
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.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.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
perfRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
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.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.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.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
perfRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
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.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.57.1.el9_4RHSA-2025:2270
perf-debuginfoRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
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.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.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
perf-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.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.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
python3-perfRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
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.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.57.1.el9_4RHSA-2025:2270
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-perfRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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-debuginfoRocky
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
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.11.1.el9_5RHSA-2024:9315
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.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
python3-perf-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:4.18.0-553.8.1.el8_10RHSA-2024:4211
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
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.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
rtlaRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.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.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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-427.57.1.el9_4RHSA-2025:2270
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.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.11.1.el9_5RHSA-2024:9315
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-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.57.1.el9_4RHSA-2025:2270
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
rvRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.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.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.11.1.el9_5RHSA-2024:9315

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-787 (Out-of-bounds Write) vulnerabilities, ordered by exploit likelihood. View all

CVESeverityCVSSEPSSExploitedFix
CVE-2025-22457Critical9.0100%KEV + RansomFix
CVE-2025-0282Critical9.0100%KEV + Ransom-
CVE-2015-3113Critical9.8100%KEVFix
CVE-2021-20038Critical9.8100%KEV + Ransom-
CVE-2023-4863High8.8100%KEVFix
CVE-2020-16040Medium6.5100%-Fix
Embed a live status badge for CVE-2024-26759
CVE-2024-26759 severity badge

Markdown

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

HTML

<a href="https://tridentstack.com/cve/CVE-2024-26759"><img src="https://tridentstack.com/cve/badge/CVE-2024-26759.svg" alt="CVE-2024-26759"></a>

Find and fix vulnerabilities across your fleet

TridentStack Control continuously scans your Windows, macOS, and Linux fleet for known vulnerabilities, prioritizes them by severity and active exploitation, and patches them automatically.

Start free

This product uses NVD data but is not endorsed or certified by the NVD. EPSS scores courtesy of FIRST.org (https://www.first.org/epss). Source: CISA KEV Catalog. Data as of 2025-04-16.