CVE & CISA-KEV Catalog

CVE-2024-26645

MEDIUM
5.5
CVSS v3
NVD

Description

In the Linux kernel, the following vulnerability has been resolved: tracing: Ensure visibility when inserting an element into tracing_map Running the following two commands in parallel on a multi-processor AArch64 machine can sporadically produce an unexpected warning about duplicate histogram entries: $ while true; do echo hist:key=id.syscall:val=hitcount > \ /sys/kernel/debug/tracing/events/raw_syscalls/sys_enter/trigger cat /sys/kernel/debug/tracing/events/raw_syscalls/sys_enter/hist sleep 0.001 done $ stress-ng --sysbadaddr $(nproc) The warning looks as follows: [ 2911.172474] ------------[ cut here ]------------ [ 2911.173111] Duplicates detected: 1 [ 2911.173574] WARNING: CPU: 2 PID: 12247 at kernel/trace/tracing_map.c:983 tracing_map_sort_entries+0x3e0/0x408 [ 2911.174702] Modules linked in: iscsi_ibft(E) iscsi_boot_sysfs(E) rfkill(E) af_packet(E) nls_iso8859_1(E) nls_cp437(E) vfat(E) fat(E) ena(E) tiny_power_button(E) qemu_fw_cfg(E) button(E) fuse(E) efi_pstore(E) ip_tables(E) x_tables(E) xfs(E) libcrc32c(E) aes_ce_blk(E) aes_ce_cipher(E) crct10dif_ce(E) polyval_ce(E) polyval_generic(E) ghash_ce(E) gf128mul(E) sm4_ce_gcm(E) sm4_ce_ccm(E) sm4_ce(E) sm4_ce_cipher(E) sm4(E) sm3_ce(E) sm3(E) sha3_ce(E) sha512_ce(E) sha512_arm64(E) sha2_ce(E) sha256_arm64(E) nvme(E) sha1_ce(E) nvme_core(E) nvme_auth(E) t10_pi(E) sg(E) scsi_mod(E) scsi_common(E) efivarfs(E) [ 2911.174738] Unloaded tainted modules: cppc_cpufreq(E):1 [ 2911.180985] CPU: 2 PID: 12247 Comm: cat Kdump: loaded Tainted: G E 6.7.0-default #2 1b58bbb22c97e4399dc09f92d309344f69c44a01 [ 2911.182398] Hardware name: Amazon EC2 c7g.8xlarge/, BIOS 1.0 11/1/2018 [ 2911.183208] pstate: 61400005 (nZCv daif +PAN -UAO -TCO +DIT -SSBS BTYPE=--) [ 2911.184038] pc : tracing_map_sort_entries+0x3e0/0x408 [ 2911.184667] lr : tracing_map_sort_entries+0x3e0/0x408 [ 2911.185310] sp : ffff8000a1513900 [ 2911.185750] x29: ffff8000a1513900 x28: ffff0003f272fe80 x27: 0000000000000001 [ 2911.186600] x26: ffff0003f272fe80 x25: 0000000000000030 x24: 0000000000000008 [ 2911.187458] x23: ffff0003c5788000 x22: ffff0003c16710c8 x21: ffff80008017f180 [ 2911.188310] x20: ffff80008017f000 x19: ffff80008017f180 x18: ffffffffffffffff [ 2911.189160] x17: 0000000000000000 x16: 0000000000000000 x15: ffff8000a15134b8 [ 2911.190015] x14: 0000000000000000 x13: 205d373432323154 x12: 5b5d313131333731 [ 2911.190844] x11: 00000000fffeffff x10: 00000000fffeffff x9 : ffffd1b78274a13c [ 2911.191716] x8 : 000000000017ffe8 x7 : c0000000fffeffff x6 : 000000000057ffa8 [ 2911.192554] x5 : ffff0012f6c24ec0 x4 : 0000000000000000 x3 : ffff2e5b72b5d000 [ 2911.193404] x2 : 0000000000000000 x1 : 0000000000000000 x0 : ffff0003ff254480 [ 2911.194259] Call trace: [ 2911.194626] tracing_map_sort_entries+0x3e0/0x408 [ 2911.195220] hist_show+0x124/0x800 [ 2911.195692] seq_read_iter+0x1d4/0x4e8 [ 2911.196193] seq_read+0xe8/0x138 [ 2911.196638] vfs_read+0xc8/0x300 [ 2911.197078] ksys_read+0x70/0x108 [ 2911.197534] __arm64_sys_read+0x24/0x38 [ 2911.198046] invoke_syscall+0x78/0x108 [ 2911.198553] el0_svc_common.constprop.0+0xd0/0xf8 [ 2911.199157] do_el0_svc+0x28/0x40 [ 2911.199613] el0_svc+0x40/0x178 [ 2911.200048] el0t_64_sync_handler+0x13c/0x158 [ 2911.200621] el0t_64_sync+0x1a8/0x1b0 [ 2911.201115] ---[ end trace 0000000000000000 ]--- The problem appears to be caused by CPU reordering of writes issued from __tracing_map_insert(). The check for the presence of an element with a given key in this function is: val = READ_ONCE(entry->val); if (val && keys_match(key, val->key, map->key_size)) ... The write of a new entry is: elt = get_free_elt(map); memcpy(elt->key, key, map->key_size); entry->val = elt; The "memcpy(elt->key, key, map->key_size);" and "entry->val = elt;" stores may become visible in the reversed order on another CPU. This second CPU might then incorrectly determine that a new key doesn't match an already present val->key and subse ---truncated---

How to fix

Remediation Available
linuxDebian
Fixed in:5.10.216-1CVE-2024-26645
Fixed in:6.1.76-1CVE-2024-26645
Fixed in:6.6.15-1CVE-2024-26645
Fixed in:6.6.15-1CVE-2024-26645
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.72.1.el9_4RHSA-2025:8796
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.3.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.72.1.el9_4RHSA-2025:8796
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.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:7.3.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:7.4.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:7.3.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:7.3.0-427.72.1.el9_4RHSA-2025:8796
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
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.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.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
kernel-64kRed Hat / RHEL
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64kRocky
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-coreRocky
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.72.1.el9_4RHSA-2025:8796
kernel-64k-debugRed Hat / RHEL
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debugRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
kernel-64k-debug-coreRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
kernel-64k-debug-coreRocky
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debug-debuginfoRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
kernel-64k-debug-develRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
kernel-64k-debug-modulesRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
kernel-64k-debug-modulesRed Hat / RHEL
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debug-modules-coreRocky
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
kernel-64k-debug-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
kernel-64k-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-debuginfoRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
kernel-64k-develRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
kernel-64k-develRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
kernel-64k-devel-matchedRocky
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-modulesRocky
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-modulesRed Hat / RHEL
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-modules-coreRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
kernel-64k-modules-extraRocky
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-64k-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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-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.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-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-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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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-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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-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.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
kernel-debug-devel-matchedRocky
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
kernel-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
kernel-debug-uki-virtRocky
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
kernel-debuginfo-common-aarch64Rocky
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.72.1.el9_4RHSA-2025:8796
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-427.72.1.el9_4RHSA-2025:8796
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
kernel-debuginfo-common-s390xRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-devel-matchedRocky
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
kernel-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
kernel-docRed 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.72.1.el9_4RHSA-2025:8796
kernel-docRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-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.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
kernel-modules-coreRocky
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.72.1.el9_4RHSA-2025:8796
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-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-rt-coreRocky
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.72.1.el9_4RHSA-2025:8796
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-427.72.1.el9_4RHSA-2025:8796
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-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
kernel-rt-debug-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.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.72.1.el9_4RHSA-2025:8796
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
kernel-rt-debug-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.rt7.363.el8_10RHSA-2024:7001
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-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.72.1.el9_4RHSA-2025:8796
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
kernel-rt-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.72.1.el9_4RHSA-2025:8796
kernel-rt-modules-coreRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.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.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-uki-virtRed Hat / RHEL
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
kernel-uki-virt-addonsRocky
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-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.72.1.el9_4RHSA-2025:8796
kernel-zfcpdumpRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
kernel-zfcpdump-coreRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
kernel-zfcpdump-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
kernel-zfcpdump-develRocky
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.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
kernel-zfcpdump-devel-matchedRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
kernel-zfcpdump-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-427.72.1.el9_4RHSA-2025:8796
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
kernel-zfcpdump-modules-coreRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
kernel-zfcpdump-modules-extraRocky
Fixed in:0:4.18.0-553.22.1.el8_10RHSA-2024:7000
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
libperfRocky
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
libperfRed Hat / RHEL
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
libperf-debuginfoRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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
libperf-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
rtlaRed Hat / RHEL
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
rtlaRocky
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
rvRocky
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.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
Fixed in:0:5.14.0-503.11.1.el9_5RHSA-2024:9315
Fixed in:0:5.14.0-427.72.1.el9_4RHSA-2025:8796
linuxUbuntu
Fixed in:5.4.0-181.201USN-6767-1
Fixed in:5.15.0-106.116USN-6766-1
Fixed in:6.5.0-41.41USN-6818-1
linux-awsUbuntu
Fixed in:5.4.0-1124.134USN-6767-1
Fixed in:5.15.0-1061.67USN-6766-3
Fixed in:6.5.0-1021.21USN-6819-2
linux-aws-5.15Ubuntu
Fixed in:5.15.0-1061.67~20.04.1USN-6766-3
linux-aws-5.4Ubuntu
Fixed in:5.4.0-1124.134~18.04.1USN-6767-1
linux-azureUbuntu
Fixed in:5.4.0-1129.136USN-6767-1
Fixed in:5.15.0-1063.72USN-6766-1
Fixed in:6.5.0-1022.23USN-6819-1
linux-azure-5.15Ubuntu
Fixed in:5.15.0-1063.72~20.04.1USN-6766-1
linux-azure-5.4Ubuntu
Fixed in:5.4.0-1129.136~18.04.1USN-6767-1
linux-azure-6.5Ubuntu
Fixed in:6.5.0-1022.23~22.04.1USN-6819-1
linux-azure-fdeUbuntu
Fixed in:5.15.0-1063.72.1USN-6766-1
linux-azure-fde-5.15Ubuntu
Fixed in:5.15.0-1063.72~20.04.1.1USN-6766-1
linux-bluefieldUbuntu
Fixed in:5.4.0-1084.91USN-6767-2
linux-gcpUbuntu
Fixed in:5.4.0-1128.137USN-6767-1
Fixed in:5.15.0-1059.67USN-6766-1
Fixed in:6.5.0-1022.24USN-6818-1
linux-gcp-5.15Ubuntu
Fixed in:5.15.0-1059.67~20.04.1USN-6766-1
linux-gcp-5.4Ubuntu
Fixed in:5.4.0-1128.137~18.04.1USN-6767-1
linux-gcp-6.5Ubuntu
Fixed in:6.5.0-1022.24~22.04.1USN-6818-1
linux-gkeUbuntu
Fixed in:5.15.0-1058.63USN-6766-1
linux-gkeopUbuntu
Fixed in:5.4.0-1091.95USN-6767-1
Fixed in:5.15.0-1044.51USN-6766-1
linux-gkeop-5.15Ubuntu
Fixed in:5.15.0-1044.51~20.04.1USN-6766-1
linux-hwe-5.15Ubuntu
Fixed in:5.15.0-106.116~20.04.1USN-6766-2
linux-hwe-5.4Ubuntu
Fixed in:5.4.0-181.201~18.04.1USN-6767-1
linux-hwe-6.5Ubuntu
Fixed in:6.5.0-41.41~22.04.2USN-6818-4
linux-ibmUbuntu
Fixed in:5.4.0-1071.76USN-6767-1
Fixed in:5.15.0-1054.57USN-6766-1
linux-ibm-5.15Ubuntu
Fixed in:5.15.0-1054.57~20.04.1USN-6766-1
linux-ibm-5.4Ubuntu
Fixed in:5.4.0-1071.76~18.04.1USN-6767-1
linux-image-5.15.0-1044-gkeopUbuntu
Fixed in:5.15.0-1044.51~20.04.1USN-6766-1
Fixed in:5.15.0-1044.51USN-6766-1
linux-image-5.15.0-1054-ibmUbuntu
Fixed in:5.15.0-1054.57~20.04.1USN-6766-1
Fixed in:5.15.0-1054.57USN-6766-1
linux-image-5.15.0-1054-nvidiaUbuntu
Fixed in:5.15.0-1054.55USN-6766-1
linux-image-5.15.0-1054-nvidia-lowlatencyUbuntu
Fixed in:5.15.0-1054.55USN-6766-1
linux-image-5.15.0-1054-raspiUbuntu
Fixed in:5.15.0-1054.57USN-6766-2
linux-image-5.15.0-1057-intel-iotgUbuntu
Fixed in:5.15.0-1057.63USN-6795-1
linux-image-5.15.0-1058-gkeUbuntu
Fixed in:5.15.0-1058.63USN-6766-1
linux-image-5.15.0-1058-intel-iotgUbuntu
Fixed in:5.15.0-1058.64~20.04.1USN-6828-1
linux-image-5.15.0-1058-kvmUbuntu
Fixed in:5.15.0-1058.63USN-6766-1
linux-image-5.15.0-1059-gcpUbuntu
Fixed in:5.15.0-1059.67~20.04.1USN-6766-1
Fixed in:5.15.0-1059.67USN-6766-1
linux-image-5.15.0-1059-oracleUbuntu
Fixed in:5.15.0-1059.65~20.04.1USN-6766-1
Fixed in:5.15.0-1059.65USN-6766-1
linux-image-5.15.0-106-genericUbuntu
Fixed in:5.15.0-106.116~20.04.1USN-6766-2
Fixed in:5.15.0-106.116USN-6766-1
linux-image-5.15.0-106-generic-64kUbuntu
Fixed in:5.15.0-106.116~20.04.1USN-6766-2
Fixed in:5.15.0-106.116USN-6766-1
linux-image-5.15.0-106-generic-lpaeUbuntu
Fixed in:5.15.0-106.116~20.04.1USN-6766-2
Fixed in:5.15.0-106.116USN-6766-1
linux-image-5.15.0-106-lowlatencyUbuntu
Fixed in:5.15.0-106.116~20.04.1USN-6766-1
Fixed in:5.15.0-106.116USN-6766-1
linux-image-5.15.0-106-lowlatency-64kUbuntu
Fixed in:5.15.0-106.116~20.04.1USN-6766-1
Fixed in:5.15.0-106.116USN-6766-1
linux-image-5.15.0-1061-awsUbuntu
Fixed in:5.15.0-1061.67~20.04.1USN-6766-3
Fixed in:5.15.0-1061.67USN-6766-3
linux-image-5.15.0-1063-azureUbuntu
Fixed in:5.15.0-1063.72~20.04.1USN-6766-1
Fixed in:5.15.0-1063.72USN-6766-1
linux-image-5.15.0-1063-azure-fdeUbuntu
Fixed in:5.15.0-1063.72~20.04.1.1USN-6766-1
Fixed in:5.15.0-1063.72.1USN-6766-1
linux-image-5.4.0-1036-iotUbuntu
Fixed in:5.4.0-1036.37USN-6767-1
linux-image-5.4.0-1043-xilinx-zynqmpUbuntu
Fixed in:5.4.0-1043.47USN-6767-1
linux-image-5.4.0-1071-ibmUbuntu
Fixed in:5.4.0-1071.76~18.04.1USN-6767-1
Fixed in:5.4.0-1071.76USN-6767-1
linux-image-5.4.0-1084-bluefieldUbuntu
Fixed in:5.4.0-1084.91USN-6767-2
linux-image-5.4.0-1091-gkeopUbuntu
Fixed in:5.4.0-1091.95USN-6767-1
linux-image-5.4.0-1108-raspiUbuntu
Fixed in:5.4.0-1108.120~18.04.1USN-6767-1
Fixed in:5.4.0-1108.120USN-6767-1
linux-image-5.4.0-1112-kvmUbuntu
Fixed in:5.4.0-1112.119USN-6767-1
linux-image-5.4.0-1123-oracleUbuntu
Fixed in:5.4.0-1123.132~18.04.1USN-6767-1
Fixed in:5.4.0-1123.132USN-6767-1
linux-image-5.4.0-1124-awsUbuntu
Fixed in:5.4.0-1124.134~18.04.1USN-6767-1
Fixed in:5.4.0-1124.134USN-6767-1
linux-image-5.4.0-1128-gcpUbuntu
Fixed in:5.4.0-1128.137~18.04.1USN-6767-1
Fixed in:5.4.0-1128.137USN-6767-1
linux-image-5.4.0-1129-azureUbuntu
Fixed in:5.4.0-1129.136~18.04.1USN-6767-1
Fixed in:5.4.0-1129.136USN-6767-1
linux-image-5.4.0-181-genericUbuntu
Fixed in:5.4.0-181.201~18.04.1USN-6767-1
Fixed in:5.4.0-181.201USN-6767-1
linux-image-5.4.0-181-generic-lpaeUbuntu
Fixed in:5.4.0-181.201USN-6767-1
linux-image-5.4.0-181-lowlatencyUbuntu
Fixed in:5.4.0-181.201~18.04.1USN-6767-1
Fixed in:5.4.0-181.201USN-6767-1
linux-image-6.5.0-1015-starfiveUbuntu
Fixed in:6.5.0-1015.16~22.04.1USN-6819-1
Fixed in:6.5.0-1015.16USN-6819-1
linux-image-6.5.0-1017-laptopUbuntu
Fixed in:6.5.0-1017.20USN-6818-2
linux-image-6.5.0-1018-raspiUbuntu
Fixed in:6.5.0-1018.21USN-6818-1
linux-image-6.5.0-1021-awsUbuntu
Fixed in:6.5.0-1021.21USN-6819-2
linux-image-6.5.0-1021-nvidiaUbuntu
Fixed in:6.5.0-1021.22USN-6818-3
linux-image-6.5.0-1021-nvidia-64kUbuntu
Fixed in:6.5.0-1021.22USN-6818-3
linux-image-6.5.0-1022-azureUbuntu
Fixed in:6.5.0-1022.23~22.04.1USN-6819-1
Fixed in:6.5.0-1022.23USN-6819-1
linux-image-6.5.0-1022-azure-fdeUbuntu
Fixed in:6.5.0-1022.23~22.04.1USN-6819-1
Fixed in:6.5.0-1022.23USN-6819-1
linux-image-6.5.0-1022-gcpUbuntu
Fixed in:6.5.0-1022.24~22.04.1USN-6818-1
Fixed in:6.5.0-1022.24USN-6818-1
linux-image-6.5.0-1024-oemUbuntu
Fixed in:6.5.0-1024.25USN-6819-3
linux-image-6.5.0-1024-oracleUbuntu
Fixed in:6.5.0-1024.24~22.04.1USN-6819-4
Fixed in:6.5.0-1024.24USN-6819-2
linux-image-6.5.0-1024-oracle-64kUbuntu
Fixed in:6.5.0-1024.24~22.04.1USN-6819-4
Fixed in:6.5.0-1024.24USN-6819-2
linux-image-6.5.0-41-genericUbuntu
Fixed in:6.5.0-41.41~22.04.2USN-6818-4
Fixed in:6.5.0-41.41USN-6818-1
linux-image-6.5.0-41-generic-64kUbuntu
Fixed in:6.5.0-41.41~22.04.2USN-6818-4
Fixed in:6.5.0-41.41USN-6818-1
linux-image-6.5.0-41-lowlatencyUbuntu
Fixed in:6.5.0-41.41.1~22.04.1USN-6818-1
Fixed in:6.5.0-41.41.1USN-6818-1
linux-image-6.5.0-41-lowlatency-64kUbuntu
Fixed in:6.5.0-41.41.1~22.04.1USN-6818-1
Fixed in:6.5.0-41.41.1USN-6818-1
linux-image-awsUbuntu
Fixed in:5.4.0.1124.134~18.04.1USN-6767-1
Fixed in:5.15.0.1061.67~20.04.1USN-6766-3
Fixed in:6.5.0.1021.21USN-6819-2
linux-image-aws-lts-20.04Ubuntu
Fixed in:5.4.0.1124.121USN-6767-1
linux-image-aws-lts-22.04Ubuntu
Fixed in:5.15.0.1061.61USN-6766-3
linux-image-azureUbuntu
Fixed in:5.4.0.1129.136~18.04.1USN-6767-1
Fixed in:5.15.0.1063.72~20.04.1USN-6766-1
Fixed in:6.5.0.1022.23~22.04.1USN-6819-1
Fixed in:6.5.0.1022.26USN-6819-1
linux-image-azure-cvmUbuntu
Fixed in:5.15.0.1063.72~20.04.1USN-6766-1
linux-image-azure-fdeUbuntu
Fixed in:5.15.0.1063.72~20.04.1.41USN-6766-1
Fixed in:6.5.0.1022.23~22.04.1USN-6819-1
Fixed in:6.5.0.1022.26USN-6819-1
linux-image-azure-fde-lts-22.04Ubuntu
Fixed in:5.15.0.1063.72.41USN-6766-1
linux-image-azure-lts-20.04Ubuntu
Fixed in:5.4.0.1129.123USN-6767-1
linux-image-azure-lts-22.04Ubuntu
Fixed in:5.15.0.1063.61USN-6766-1
linux-image-bluefieldUbuntu
Fixed in:5.4.0.1084.80USN-6767-2
linux-image-gcpUbuntu
Fixed in:5.4.0.1128.137~18.04.1USN-6767-1
Fixed in:5.15.0.1059.67~20.04.1USN-6766-1
Fixed in:6.5.0.1022.24~22.04.1USN-6818-1
Fixed in:6.5.0.1022.24USN-6818-1
linux-image-gcp-lts-20.04Ubuntu
Fixed in:5.4.0.1128.130USN-6767-1
linux-image-gcp-lts-22.04Ubuntu
Fixed in:5.15.0.1059.55USN-6766-1
linux-image-genericUbuntu
Fixed in:5.4.0.181.179USN-6767-1
Fixed in:5.15.0.106.106USN-6766-1
Fixed in:6.5.0.41.41USN-6818-1
linux-image-generic-64kUbuntu
Fixed in:5.15.0.106.106USN-6766-1
Fixed in:6.5.0.41.41USN-6818-1
linux-image-generic-64k-hwe-20.04Ubuntu
Fixed in:5.15.0.106.116~20.04.1USN-6766-2
linux-image-generic-64k-hwe-22.04Ubuntu
Fixed in:6.5.0.41.41~22.04.2USN-6818-4
linux-image-generic-hwe-18.04Ubuntu
Fixed in:5.4.0.181.201~18.04.1USN-6767-1
linux-image-generic-hwe-20.04Ubuntu
Fixed in:5.15.0.106.116~20.04.1USN-6766-2
linux-image-generic-hwe-22.04Ubuntu
Fixed in:6.5.0.41.41~22.04.2USN-6818-4
linux-image-generic-lpaeUbuntu
Fixed in:5.4.0.181.179USN-6767-1
Fixed in:5.15.0.106.106USN-6766-1
Fixed in:6.5.0.41.41USN-6818-1
linux-image-generic-lpae-hwe-20.04Ubuntu
Fixed in:5.15.0.106.116~20.04.1USN-6766-2
linux-image-gkeUbuntu
Fixed in:5.15.0.1058.57USN-6766-1
linux-image-gke-5.15Ubuntu
Fixed in:5.15.0.1058.57USN-6766-1
linux-image-gkeopUbuntu
Fixed in:5.4.0.1091.89USN-6767-1
Fixed in:5.15.0.1044.43USN-6766-1
linux-image-gkeop-5.15Ubuntu
Fixed in:5.15.0.1044.51~20.04.1USN-6766-1
Fixed in:5.15.0.1044.43USN-6766-1
linux-image-gkeop-5.4Ubuntu
Fixed in:5.4.0.1091.89USN-6767-1
linux-image-ibmUbuntu
Fixed in:5.4.0.1071.76~18.04.1USN-6767-1
Fixed in:5.15.0.1054.57~20.04.1USN-6766-1
Fixed in:5.15.0.1054.50USN-6766-1
linux-image-ibm-lts-20.04Ubuntu
Fixed in:5.4.0.1071.100USN-6767-1
linux-image-intelUbuntu
Fixed in:5.15.0.1058.64~20.04.1USN-6828-1
linux-image-intel-iotgUbuntu
Fixed in:5.15.0.1058.64~20.04.1USN-6828-1
Fixed in:5.15.0.1057.57USN-6795-1
linux-image-kvmUbuntu
Fixed in:5.4.0.1112.108USN-6767-1
Fixed in:5.15.0.1058.54USN-6766-1
Fixed in:6.5.0.41.41USN-6818-1
linux-image-laptop-23.10Ubuntu
Fixed in:6.5.0.1017.20USN-6818-2
linux-image-lowlatencyUbuntu
Fixed in:5.4.0.181.179USN-6767-1
Fixed in:5.15.0.106.101USN-6766-1
Fixed in:6.5.0.41.41.1USN-6818-1
linux-image-lowlatency-64kUbuntu
Fixed in:5.15.0.106.101USN-6766-1
Fixed in:6.5.0.41.41.1USN-6818-1
linux-image-lowlatency-64k-hwe-20.04Ubuntu
Fixed in:5.15.0.106.116~20.04.1USN-6766-1
linux-image-lowlatency-64k-hwe-22.04Ubuntu
Fixed in:6.5.0.41.41.1~22.04.1USN-6818-1
linux-image-lowlatency-hwe-18.04Ubuntu
Fixed in:5.4.0.181.201~18.04.1USN-6767-1
linux-image-lowlatency-hwe-20.04Ubuntu
Fixed in:5.15.0.106.116~20.04.1USN-6766-1
linux-image-lowlatency-hwe-22.04Ubuntu
Fixed in:6.5.0.41.41.1~22.04.1USN-6818-1
linux-image-nvidiaUbuntu
Fixed in:5.15.0.1054.54USN-6766-1
linux-image-nvidia-6.5Ubuntu
Fixed in:6.5.0.1021.29USN-6818-3
linux-image-nvidia-64k-6.5Ubuntu
Fixed in:6.5.0.1021.29USN-6818-3
linux-image-nvidia-64k-hwe-22.04Ubuntu
Fixed in:6.5.0.1021.29USN-6818-3
linux-image-nvidia-hwe-22.04Ubuntu
Fixed in:6.5.0.1021.29USN-6818-3
linux-image-nvidia-lowlatencyUbuntu
Fixed in:5.15.0.1054.54USN-6766-1
linux-image-oemUbuntu
Fixed in:5.4.0.181.201~18.04.1USN-6767-1
Fixed in:5.4.0.181.179USN-6767-1
linux-image-oem-20.04Ubuntu
Fixed in:5.15.0.106.116~20.04.1USN-6766-2
linux-image-oem-20.04bUbuntu
Fixed in:5.15.0.106.116~20.04.1USN-6766-2
linux-image-oem-20.04cUbuntu
Fixed in:5.15.0.106.116~20.04.1USN-6766-2
linux-image-oem-20.04dUbuntu
Fixed in:5.15.0.106.116~20.04.1USN-6766-2
linux-image-oem-22.04Ubuntu
Fixed in:6.5.0.1024.26USN-6819-3
linux-image-oem-22.04aUbuntu
Fixed in:6.5.0.1024.26USN-6819-3
linux-image-oem-22.04bUbuntu
Fixed in:6.5.0.1024.26USN-6819-3
linux-image-oem-22.04cUbuntu
Fixed in:6.5.0.1024.26USN-6819-3
linux-image-oem-22.04dUbuntu
Fixed in:6.5.0.1024.26USN-6819-3
linux-image-oem-osp1Ubuntu
Fixed in:5.4.0.181.201~18.04.1USN-6767-1
Fixed in:5.4.0.181.179USN-6767-1
linux-image-oracleUbuntu
Fixed in:5.4.0.1123.132~18.04.1USN-6767-1
Fixed in:5.15.0.1059.65~20.04.1USN-6766-1
Fixed in:6.5.0.1024.24~22.04.1USN-6819-4
Fixed in:6.5.0.1024.26USN-6819-2
linux-image-oracle-64kUbuntu
Fixed in:6.5.0.1024.24~22.04.1USN-6819-4
Fixed in:6.5.0.1024.26USN-6819-2
linux-image-oracle-lts-20.04Ubuntu
Fixed in:5.4.0.1123.116USN-6767-1
linux-image-oracle-lts-22.04Ubuntu
Fixed in:5.15.0.1059.55USN-6766-1
linux-image-raspiUbuntu
Fixed in:5.4.0.1108.138USN-6767-1
Fixed in:5.15.0.1054.52USN-6766-2
Fixed in:6.5.0.1018.19USN-6818-1
linux-image-raspi-hwe-18.04Ubuntu
Fixed in:5.4.0.1108.120~18.04.1USN-6767-1
linux-image-raspi-nolpaeUbuntu
Fixed in:5.15.0.1054.52USN-6766-2
Fixed in:6.5.0.1018.19USN-6818-1
linux-image-raspi2Ubuntu
Fixed in:5.4.0.1108.138USN-6767-1
linux-image-snapdragon-hwe-18.04Ubuntu
Fixed in:5.4.0.181.201~18.04.1USN-6767-1
linux-image-starfiveUbuntu
Fixed in:6.5.0.1015.16~22.04.1USN-6819-1
Fixed in:6.5.0.1015.17USN-6819-1
linux-image-virtualUbuntu
Fixed in:5.4.0.181.179USN-6767-1
Fixed in:5.15.0.106.106USN-6766-1
Fixed in:6.5.0.41.41USN-6818-1
linux-image-virtual-hwe-18.04Ubuntu
Fixed in:5.4.0.181.201~18.04.1USN-6767-1
linux-image-virtual-hwe-20.04Ubuntu
Fixed in:5.15.0.106.116~20.04.1USN-6766-2
linux-image-virtual-hwe-22.04Ubuntu
Fixed in:6.5.0.41.41~22.04.2USN-6818-4
linux-image-xilinx-zynqmpUbuntu
Fixed in:5.4.0.1043.43USN-6767-1
linux-intel-iotgUbuntu
Fixed in:5.15.0-1057.63USN-6795-1
linux-intel-iotg-5.15Ubuntu
Fixed in:5.15.0-1058.64~20.04.1USN-6828-1
linux-iotUbuntu
Fixed in:5.4.0-1036.37USN-6767-1
linux-kvmUbuntu
Fixed in:5.4.0-1112.119USN-6767-1
Fixed in:5.15.0-1058.63USN-6766-1
linux-laptopUbuntu
Fixed in:6.5.0-1017.20USN-6818-2
linux-lowlatencyUbuntu
Fixed in:5.15.0-106.116USN-6766-1
Fixed in:6.5.0-41.41.1USN-6818-1
linux-lowlatency-hwe-5.15Ubuntu
Fixed in:5.15.0-106.116~20.04.1USN-6766-1
linux-lowlatency-hwe-6.5Ubuntu
Fixed in:6.5.0-41.41.1~22.04.1USN-6818-1
linux-nvidiaUbuntu
Fixed in:5.15.0-1054.55USN-6766-1
linux-nvidia-6.5Ubuntu
Fixed in:6.5.0-1021.22USN-6818-3
linux-oem-6.5Ubuntu
Fixed in:6.5.0-1024.25USN-6819-3
linux-oracleUbuntu
Fixed in:5.4.0-1123.132USN-6767-1
Fixed in:5.15.0-1059.65USN-6766-1
Fixed in:6.5.0-1024.24USN-6819-2
linux-oracle-5.15Ubuntu
Fixed in:5.15.0-1059.65~20.04.1USN-6766-1
linux-oracle-5.4Ubuntu
Fixed in:5.4.0-1123.132~18.04.1USN-6767-1
linux-oracle-6.5Ubuntu
Fixed in:6.5.0-1024.24~22.04.1USN-6819-4
linux-raspiUbuntu
Fixed in:5.4.0-1108.120USN-6767-1
Fixed in:5.15.0-1054.57USN-6766-2
Fixed in:6.5.0-1018.21USN-6818-1
linux-raspi-5.4Ubuntu
Fixed in:5.4.0-1108.120~18.04.1USN-6767-1
linux-starfiveUbuntu
Fixed in:6.5.0-1015.16USN-6819-1
linux-starfive-6.5Ubuntu
Fixed in:6.5.0-1015.16~22.04.1USN-6819-1
linux-xilinx-zynqmpUbuntu
Fixed in:5.4.0-1043.47USN-6767-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.24%probability of exploitation in 30 days
15thpercentile

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

References

Embed a live status badge for CVE-2024-26645
CVE-2024-26645 severity badge

Markdown

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

HTML

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