CVE & CISA-KEV Catalog

CVE-2023-52610

MEDIUM
5.5
CVSS v3
NVD

Description

In the Linux kernel, the following vulnerability has been resolved: net/sched: act_ct: fix skb leak and crash on ooo frags act_ct adds skb->users before defragmentation. If frags arrive in order, the last frag's reference is reset in: inet_frag_reasm_prepare skb_morph which is not straightforward. However when frags arrive out of order, nobody unref the last frag, and all frags are leaked. The situation is even worse, as initiating packet capture can lead to a crash[0] when skb has been cloned and shared at the same time. Fix the issue by removing skb_get() before defragmentation. act_ct returns TC_ACT_CONSUMED when defrag failed or in progress. [0]: [ 843.804823] ------------[ cut here ]------------ [ 843.809659] kernel BUG at net/core/skbuff.c:2091! [ 843.814516] invalid opcode: 0000 [#1] PREEMPT SMP [ 843.819296] CPU: 7 PID: 0 Comm: swapper/7 Kdump: loaded Tainted: G S 6.7.0-rc3 #2 [ 843.824107] Hardware name: XFUSION 1288H V6/BC13MBSBD, BIOS 1.29 11/25/2022 [ 843.828953] RIP: 0010:pskb_expand_head+0x2ac/0x300 [ 843.833805] Code: 8b 70 28 48 85 f6 74 82 48 83 c6 08 bf 01 00 00 00 e8 38 bd ff ff 8b 83 c0 00 00 00 48 03 83 c8 00 00 00 e9 62 ff ff ff 0f 0b <0f> 0b e8 8d d0 ff ff e9 b3 fd ff ff 81 7c 24 14 40 01 00 00 4c 89 [ 843.843698] RSP: 0018:ffffc9000cce07c0 EFLAGS: 00010202 [ 843.848524] RAX: 0000000000000002 RBX: ffff88811a211d00 RCX: 0000000000000820 [ 843.853299] RDX: 0000000000000640 RSI: 0000000000000000 RDI: ffff88811a211d00 [ 843.857974] RBP: ffff888127d39518 R08: 00000000bee97314 R09: 0000000000000000 [ 843.862584] R10: 0000000000000000 R11: ffff8881109f0000 R12: 0000000000000880 [ 843.867147] R13: ffff888127d39580 R14: 0000000000000640 R15: ffff888170f7b900 [ 843.871680] FS: 0000000000000000(0000) GS:ffff889ffffc0000(0000) knlGS:0000000000000000 [ 843.876242] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 843.880778] CR2: 00007fa42affcfb8 CR3: 000000011433a002 CR4: 0000000000770ef0 [ 843.885336] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 [ 843.889809] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 [ 843.894229] PKRU: 55555554 [ 843.898539] Call Trace: [ 843.902772] <IRQ> [ 843.906922] ? __die_body+0x1e/0x60 [ 843.911032] ? die+0x3c/0x60 [ 843.915037] ? do_trap+0xe2/0x110 [ 843.918911] ? pskb_expand_head+0x2ac/0x300 [ 843.922687] ? do_error_trap+0x65/0x80 [ 843.926342] ? pskb_expand_head+0x2ac/0x300 [ 843.929905] ? exc_invalid_op+0x50/0x60 [ 843.933398] ? pskb_expand_head+0x2ac/0x300 [ 843.936835] ? asm_exc_invalid_op+0x1a/0x20 [ 843.940226] ? pskb_expand_head+0x2ac/0x300 [ 843.943580] inet_frag_reasm_prepare+0xd1/0x240 [ 843.946904] ip_defrag+0x5d4/0x870 [ 843.950132] nf_ct_handle_fragments+0xec/0x130 [nf_conntrack] [ 843.953334] tcf_ct_act+0x252/0xd90 [act_ct] [ 843.956473] ? tcf_mirred_act+0x516/0x5a0 [act_mirred] [ 843.959657] tcf_action_exec+0xa1/0x160 [ 843.962823] fl_classify+0x1db/0x1f0 [cls_flower] [ 843.966010] ? skb_clone+0x53/0xc0 [ 843.969173] tcf_classify+0x24d/0x420 [ 843.972333] tc_run+0x8f/0xf0 [ 843.975465] __netif_receive_skb_core+0x67a/0x1080 [ 843.978634] ? dev_gro_receive+0x249/0x730 [ 843.981759] __netif_receive_skb_list_core+0x12d/0x260 [ 843.984869] netif_receive_skb_list_internal+0x1cb/0x2f0 [ 843.987957] ? mlx5e_handle_rx_cqe_mpwrq_rep+0xfa/0x1a0 [mlx5_core] [ 843.991170] napi_complete_done+0x72/0x1a0 [ 843.994305] mlx5e_napi_poll+0x28c/0x6d0 [mlx5_core] [ 843.997501] __napi_poll+0x25/0x1b0 [ 844.000627] net_rx_action+0x256/0x330 [ 844.003705] __do_softirq+0xb3/0x29b [ 844.006718] irq_exit_rcu+0x9e/0xc0 [ 844.009672] common_interrupt+0x86/0xa0 [ 844.012537] </IRQ> [ 844.015285] <TASK> [ 844.017937] asm_common_interrupt+0x26/0x40 [ 844.020591] RIP: 0010:acpi_safe_halt+0x1b/0x20 [ 844.023247] Code: ff 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 40 00 65 48 8b 04 25 00 18 03 00 48 8b 00 a8 08 75 0c 66 90 0f 00 2d 81 d0 44 00 fb ---truncated---

How to fix

Remediation Available
linuxDebian
Fixed in:6.1.76-1CVE-2023-52610
Fixed in:6.6.15-1CVE-2023-52610
Fixed in:6.6.15-1CVE-2023-52610
bpftoolRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:7.0.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:7.3.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:7.0.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:7.0.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:7.3.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:7.3.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:7.3.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:7.0.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
bpftoolRocky
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:7.0.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:7.3.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:7.3.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:7.0.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:7.3.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:7.3.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:7.0.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:7.0.0-284.148.1.el9_2RHSA-2025:22095
bpftool-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:7.0.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:7.3.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:7.3.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:7.0.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:7.3.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:7.3.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:7.0.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:7.0.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
bpftool-debuginfoRocky
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:7.0.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:7.0.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:7.3.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:7.3.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:7.3.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:7.0.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:7.0.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:7.3.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
kernelRed Hat / RHEL
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernelRocky
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-64kRed Hat / RHEL
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-64kRocky
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-64k-coreRocky
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-64k-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-64k-debugRed Hat / RHEL
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-64k-debugRocky
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-64k-debug-coreRocky
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-64k-debug-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-64k-debug-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-64k-debug-debuginfoRocky
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-64k-debug-develRocky
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-64k-debug-develRed Hat / RHEL
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-64k-debug-devel-matchedRocky
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-64k-debug-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-64k-debug-modulesRed Hat / RHEL
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-64k-debug-modulesRocky
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-64k-debug-modules-coreRocky
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-64k-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-64k-debug-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-64k-debug-modules-extraRocky
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-64k-debuginfoRocky
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-64k-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-64k-develRocky
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-64k-develRed Hat / RHEL
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-64k-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-64k-devel-matchedRocky
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-64k-modulesRed Hat / RHEL
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-64k-modulesRocky
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-64k-modules-coreRocky
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-64k-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-64k-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-64k-modules-extraRocky
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-abi-stablelistsRed Hat / RHEL
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
kernel-abi-stablelistsRocky
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-coreRed Hat / RHEL
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
kernel-coreRocky
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-cross-headersRocky
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
kernel-cross-headersRed Hat / RHEL
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
kernel-debugRed Hat / RHEL
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
kernel-debugRocky
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
kernel-debug-coreRocky
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-debug-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
kernel-debug-debuginfoRocky
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
kernel-debug-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-debug-develRed Hat / RHEL
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-debug-develRocky
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
kernel-debug-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-debug-devel-matchedRocky
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
kernel-debug-modulesRed Hat / RHEL
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-debug-modulesRocky
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-debug-modules-coreRocky
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-debug-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
kernel-debug-modules-extraRocky
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-debug-uki-virtRocky
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-debug-uki-virtRed Hat / RHEL
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-debuginfoRocky
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-debuginfo-common-aarch64Red Hat / RHEL
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
kernel-debuginfo-common-aarch64Rocky
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-debuginfo-common-ppc64leRocky
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-debuginfo-common-ppc64leRed Hat / RHEL
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-debuginfo-common-s390xRocky
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
kernel-debuginfo-common-s390xRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
kernel-debuginfo-common-x86_64Rocky
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-develRed Hat / RHEL
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-develRocky
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-devel-matchedRocky
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-docRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-docRocky
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-headersRed Hat / RHEL
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
kernel-headersRocky
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
kernel-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
kernel-modulesRocky
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-modules-coreRocky
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-modules-extraRocky
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
kernel-rtRocky
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-rtRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-rt-coreRocky
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-rt-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-rt-debugRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-rt-debugRocky
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-rt-debug-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
kernel-rt-debug-coreRocky
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-rt-debug-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-rt-debug-debuginfoRocky
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-rt-debug-develRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-rt-debug-develRocky
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-rt-debug-kvmRocky
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-rt-debug-kvmRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
kernel-rt-debug-modulesRocky
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
kernel-rt-debug-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
kernel-rt-debug-modules-coreRocky
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
kernel-rt-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-rt-debug-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
kernel-rt-debug-modules-extraRocky
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-rt-debuginfoRocky
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-rt-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-rt-debuginfo-common-x86_64Rocky
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
kernel-rt-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
kernel-rt-develRocky
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
kernel-rt-develRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-rt-kvmRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
kernel-rt-kvmRocky
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
kernel-rt-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-rt-modulesRocky
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-rt-modules-coreRocky
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
kernel-rt-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
kernel-rt-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
kernel-rt-modules-extraRocky
Fixed in:0:4.18.0-553.5.1.rt7.346.el8_10RHSA-2024:3627
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.rt21.229.el9_0RHSA-2025:22997
Fixed in:0:5.14.0-284.148.1.rt14.433.el9_2RHSA-2025:22124
kernel-toolsRocky
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
kernel-toolsRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-tools-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
kernel-tools-debuginfoRocky
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
kernel-tools-libsRed Hat / RHEL
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-tools-libsRocky
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-tools-libs-develRocky
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-tools-libs-develRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-uki-virtRed Hat / RHEL
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-uki-virtRocky
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-zfcpdumpRocky
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-zfcpdumpRed Hat / RHEL
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
kernel-zfcpdump-coreRocky
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
kernel-zfcpdump-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
kernel-zfcpdump-debuginfoRocky
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-zfcpdump-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-zfcpdump-develRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-zfcpdump-develRocky
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-zfcpdump-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-zfcpdump-devel-matchedRocky
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
kernel-zfcpdump-modulesRed Hat / RHEL
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
kernel-zfcpdump-modulesRocky
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
kernel-zfcpdump-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-zfcpdump-modules-coreRocky
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-zfcpdump-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
kernel-zfcpdump-modules-extraRocky
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
libperfRocky
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
libperfRed Hat / RHEL
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
libperf-debuginfoRocky
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
libperf-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
perfRed Hat / RHEL
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
perfRocky
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
perf-debuginfoRocky
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
perf-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
python3-perfRocky
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
python3-perfRed Hat / RHEL
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
python3-perf-debuginfoRocky
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
python3-perf-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-477.67.1.el8_8RHSA-2024:5255
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-553.5.1.el8_10RHSA-2024:3618
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:4.18.0-372.119.1.el8_6RHSA-2024:5692
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-70.157.1.el9_0RHSA-2025:22999
rtlaRed Hat / RHEL
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
rtlaRocky
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-284.148.1.el9_2RHSA-2025:22095
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
rvRocky
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
rvRed Hat / RHEL
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
Fixed in:0:5.14.0-427.13.1.el9_4RHSA-2024:2394
linuxUbuntu
Fixed in:5.15.0-102.112USN-6725-1
Fixed in:6.5.0-41.41USN-6818-1
linux-awsUbuntu
Fixed in:5.15.0-1057.63USN-6725-2
Fixed in:6.5.0-1021.21USN-6819-2
linux-aws-5.15Ubuntu
Fixed in:5.15.0-1057.63~20.04.1USN-6725-2
linux-azureUbuntu
Fixed in:5.15.0-1060.69USN-6725-1
Fixed in:6.5.0-1022.23USN-6819-1
linux-azure-5.15Ubuntu
Fixed in:5.15.0-1060.69~20.04.1USN-6725-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-1060.69.1USN-6725-1
linux-azure-fde-5.15Ubuntu
Fixed in:5.15.0-1060.69~20.04.1.1USN-6725-1
linux-gcpUbuntu
Fixed in:5.15.0-1055.63USN-6725-1
Fixed in:6.5.0-1022.24USN-6818-1
linux-gcp-5.15Ubuntu
Fixed in:5.15.0-1055.63~20.04.1USN-6725-1
linux-gcp-6.5Ubuntu
Fixed in:6.5.0-1022.24~22.04.1USN-6818-1
linux-gkeUbuntu
Fixed in:5.15.0-1054.59USN-6725-1
linux-gkeopUbuntu
Fixed in:5.15.0-1040.46USN-6725-1
linux-gkeop-5.15Ubuntu
Fixed in:5.15.0-1040.46~20.04.1USN-6725-1
linux-hwe-5.15Ubuntu
Fixed in:5.15.0-102.112~20.04.1USN-6725-1
linux-hwe-6.5Ubuntu
Fixed in:6.5.0-41.41~22.04.2USN-6818-4
linux-ibmUbuntu
Fixed in:5.15.0-1050.53USN-6725-1
linux-ibm-5.15Ubuntu
Fixed in:5.15.0-1050.53~20.04.1USN-6725-1
linux-image-5.15.0-102-genericUbuntu
Fixed in:5.15.0-102.112~20.04.1USN-6725-1
Fixed in:5.15.0-102.112USN-6725-1
linux-image-5.15.0-102-generic-64kUbuntu
Fixed in:5.15.0-102.112~20.04.1USN-6725-1
Fixed in:5.15.0-102.112USN-6725-1
linux-image-5.15.0-102-generic-lpaeUbuntu
Fixed in:5.15.0-102.112~20.04.1USN-6725-1
Fixed in:5.15.0-102.112USN-6725-1
linux-image-5.15.0-102-lowlatencyUbuntu
Fixed in:5.15.0-102.112~20.04.1USN-6725-1
Fixed in:5.15.0-102.112USN-6725-1
linux-image-5.15.0-102-lowlatency-64kUbuntu
Fixed in:5.15.0-102.112~20.04.1USN-6725-1
Fixed in:5.15.0-102.112USN-6725-1
linux-image-5.15.0-1040-gkeopUbuntu
Fixed in:5.15.0-1040.46~20.04.1USN-6725-1
Fixed in:5.15.0-1040.46USN-6725-1
linux-image-5.15.0-1048-nvidiaUbuntu
Fixed in:5.15.0-1048.48USN-6725-1
linux-image-5.15.0-1048-nvidia-lowlatencyUbuntu
Fixed in:5.15.0-1048.48USN-6725-1
linux-image-5.15.0-1050-ibmUbuntu
Fixed in:5.15.0-1050.53~20.04.1USN-6725-1
Fixed in:5.15.0-1050.53USN-6725-1
linux-image-5.15.0-1050-raspiUbuntu
Fixed in:5.15.0-1050.53USN-6725-1
linux-image-5.15.0-1052-intel-iotgUbuntu
Fixed in:5.15.0-1052.58~20.04.1USN-6725-1
Fixed in:5.15.0-1052.58USN-6725-1
linux-image-5.15.0-1054-gkeUbuntu
Fixed in:5.15.0-1054.59USN-6725-1
linux-image-5.15.0-1054-kvmUbuntu
Fixed in:5.15.0-1054.59USN-6725-1
linux-image-5.15.0-1055-gcpUbuntu
Fixed in:5.15.0-1055.63~20.04.1USN-6725-1
Fixed in:5.15.0-1055.63USN-6725-1
linux-image-5.15.0-1055-oracleUbuntu
Fixed in:5.15.0-1055.61~20.04.1USN-6725-1
Fixed in:5.15.0-1055.61USN-6725-1
linux-image-5.15.0-1057-awsUbuntu
Fixed in:5.15.0-1057.63~20.04.1USN-6725-2
Fixed in:5.15.0-1057.63USN-6725-2
linux-image-5.15.0-1060-azureUbuntu
Fixed in:5.15.0-1060.69~20.04.1USN-6725-1
Fixed in:5.15.0-1060.69USN-6725-1
linux-image-5.15.0-1060-azure-fdeUbuntu
Fixed in:5.15.0-1060.69~20.04.1.1USN-6725-1
Fixed in:5.15.0-1060.69.1USN-6725-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.15.0.1057.63~20.04.1USN-6725-2
Fixed in:6.5.0.1021.21USN-6819-2
linux-image-aws-lts-22.04Ubuntu
Fixed in:5.15.0.1057.58USN-6725-2
linux-image-azureUbuntu
Fixed in:5.15.0.1060.69~20.04.1USN-6725-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.1060.69~20.04.1USN-6725-1
linux-image-azure-fdeUbuntu
Fixed in:5.15.0.1060.69~20.04.1.39USN-6725-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.1060.69.38USN-6725-1
linux-image-azure-lts-22.04Ubuntu
Fixed in:5.15.0.1060.58USN-6725-1
linux-image-gcpUbuntu
Fixed in:5.15.0.1055.63~20.04.1USN-6725-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-22.04Ubuntu
Fixed in:5.15.0.1055.51USN-6725-1
linux-image-genericUbuntu
Fixed in:5.15.0.102.99USN-6725-1
Fixed in:6.5.0.41.41USN-6818-1
linux-image-generic-64kUbuntu
Fixed in:5.15.0.102.99USN-6725-1
Fixed in:6.5.0.41.41USN-6818-1
linux-image-generic-64k-hwe-20.04Ubuntu
Fixed in:5.15.0.102.112~20.04.1USN-6725-1
linux-image-generic-64k-hwe-22.04Ubuntu
Fixed in:6.5.0.41.41~22.04.2USN-6818-4
linux-image-generic-hwe-20.04Ubuntu
Fixed in:5.15.0.102.112~20.04.1USN-6725-1
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.15.0.102.99USN-6725-1
Fixed in:6.5.0.41.41USN-6818-1
linux-image-generic-lpae-hwe-20.04Ubuntu
Fixed in:5.15.0.102.112~20.04.1USN-6725-1
linux-image-gkeUbuntu
Fixed in:5.15.0.1054.53USN-6725-1
linux-image-gke-5.15Ubuntu
Fixed in:5.15.0.1054.53USN-6725-1
linux-image-gkeopUbuntu
Fixed in:5.15.0.1040.39USN-6725-1
linux-image-gkeop-5.15Ubuntu
Fixed in:5.15.0.1040.46~20.04.36USN-6725-1
Fixed in:5.15.0.1040.39USN-6725-1
linux-image-ibmUbuntu
Fixed in:5.15.0.1050.53~20.04.1USN-6725-1
Fixed in:5.15.0.1050.46USN-6725-1
linux-image-intelUbuntu
Fixed in:5.15.0.1052.58~20.04.1USN-6725-1
linux-image-intel-iotgUbuntu
Fixed in:5.15.0.1052.58~20.04.1USN-6725-1
Fixed in:5.15.0.1052.52USN-6725-1
linux-image-kvmUbuntu
Fixed in:5.15.0.1054.50USN-6725-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.15.0.102.98USN-6725-1
Fixed in:6.5.0.41.41.1USN-6818-1
linux-image-lowlatency-64kUbuntu
Fixed in:5.15.0.102.98USN-6725-1
Fixed in:6.5.0.41.41.1USN-6818-1
linux-image-lowlatency-64k-hwe-20.04Ubuntu
Fixed in:5.15.0.102.112~20.04.1USN-6725-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-20.04Ubuntu
Fixed in:5.15.0.102.112~20.04.1USN-6725-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.1048.48USN-6725-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.1048.48USN-6725-1
linux-image-oem-20.04Ubuntu
Fixed in:5.15.0.102.112~20.04.1USN-6725-1
linux-image-oem-20.04bUbuntu
Fixed in:5.15.0.102.112~20.04.1USN-6725-1
linux-image-oem-20.04cUbuntu
Fixed in:5.15.0.102.112~20.04.1USN-6725-1
linux-image-oem-20.04dUbuntu
Fixed in:5.15.0.102.112~20.04.1USN-6725-1
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-oracleUbuntu
Fixed in:5.15.0.1055.61~20.04.1USN-6725-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-22.04Ubuntu
Fixed in:5.15.0.1055.51USN-6725-1
linux-image-raspiUbuntu
Fixed in:5.15.0.1050.48USN-6725-1
Fixed in:6.5.0.1018.19USN-6818-1
linux-image-raspi-nolpaeUbuntu
Fixed in:5.15.0.1050.48USN-6725-1
Fixed in:6.5.0.1018.19USN-6818-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.15.0.102.99USN-6725-1
Fixed in:6.5.0.41.41USN-6818-1
linux-image-virtual-hwe-20.04Ubuntu
Fixed in:5.15.0.102.112~20.04.1USN-6725-1
linux-image-virtual-hwe-22.04Ubuntu
Fixed in:6.5.0.41.41~22.04.2USN-6818-4
linux-intel-iotgUbuntu
Fixed in:5.15.0-1052.58USN-6725-1
linux-intel-iotg-5.15Ubuntu
Fixed in:5.15.0-1052.58~20.04.1USN-6725-1
linux-kvmUbuntu
Fixed in:5.15.0-1054.59USN-6725-1
linux-laptopUbuntu
Fixed in:6.5.0-1017.20USN-6818-2
linux-lowlatencyUbuntu
Fixed in:5.15.0-102.112USN-6725-1
Fixed in:6.5.0-41.41.1USN-6818-1
linux-lowlatency-hwe-5.15Ubuntu
Fixed in:5.15.0-102.112~20.04.1USN-6725-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-1048.48USN-6725-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.15.0-1055.61USN-6725-1
Fixed in:6.5.0-1024.24USN-6819-2
linux-oracle-5.15Ubuntu
Fixed in:5.15.0-1055.61~20.04.1USN-6725-1
linux-oracle-6.5Ubuntu
Fixed in:6.5.0-1024.24~22.04.1USN-6819-4
linux-raspiUbuntu
Fixed in:5.15.0-1050.53USN-6725-1
Fixed in:6.5.0-1018.21USN-6818-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

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

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

References

Related Vulnerabilities

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

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

Markdown

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

HTML

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