CVE & CISA-KEV Catalog

CVE-2024-41009

MEDIUM
5.5
CVSS v3
NVD

Description

In the Linux kernel, the following vulnerability has been resolved: bpf: Fix overrunning reservations in ringbuf The BPF ring buffer internally is implemented as a power-of-2 sized circular buffer, with two logical and ever-increasing counters: consumer_pos is the consumer counter to show which logical position the consumer consumed the data, and producer_pos which is the producer counter denoting the amount of data reserved by all producers. Each time a record is reserved, the producer that "owns" the record will successfully advance producer counter. In user space each time a record is read, the consumer of the data advanced the consumer counter once it finished processing. Both counters are stored in separate pages so that from user space, the producer counter is read-only and the consumer counter is read-write. One aspect that simplifies and thus speeds up the implementation of both producers and consumers is how the data area is mapped twice contiguously back-to-back in the virtual memory, allowing to not take any special measures for samples that have to wrap around at the end of the circular buffer data area, because the next page after the last data page would be first data page again, and thus the sample will still appear completely contiguous in virtual memory. Each record has a struct bpf_ringbuf_hdr { u32 len; u32 pg_off; } header for book-keeping the length and offset, and is inaccessible to the BPF program. Helpers like bpf_ringbuf_reserve() return `(void *)hdr + BPF_RINGBUF_HDR_SZ` for the BPF program to use. Bing-Jhong and Muhammad reported that it is however possible to make a second allocated memory chunk overlapping with the first chunk and as a result, the BPF program is now able to edit first chunk's header. For example, consider the creation of a BPF_MAP_TYPE_RINGBUF map with size of 0x4000. Next, the consumer_pos is modified to 0x3000 /before/ a call to bpf_ringbuf_reserve() is made. This will allocate a chunk A, which is in [0x0,0x3008], and the BPF program is able to edit [0x8,0x3008]. Now, lets allocate a chunk B with size 0x3000. This will succeed because consumer_pos was edited ahead of time to pass the `new_prod_pos - cons_pos > rb->mask` check. Chunk B will be in range [0x3008,0x6010], and the BPF program is able to edit [0x3010,0x6010]. Due to the ring buffer memory layout mentioned earlier, the ranges [0x0,0x4000] and [0x4000,0x8000] point to the same data pages. This means that chunk B at [0x4000,0x4008] is chunk A's header. bpf_ringbuf_submit() / bpf_ringbuf_discard() use the header's pg_off to then locate the bpf_ringbuf itself via bpf_ringbuf_restore_from_rec(). Once chunk B modified chunk A's header, then bpf_ringbuf_commit() refers to the wrong page and could cause a crash. Fix it by calculating the oldest pending_pos and check whether the range from the oldest outstanding record to the newest would span beyond the ring buffer size. If that is the case, then reject the request. We've tested with the ring buffer benchmark in BPF selftests (./benchs/run_bench_ringbufs.sh) before/after the fix and while it seems a bit slower on some benchmarks, it is still not significantly enough to matter.

How to fix

Remediation Available
linuxDebian
Fixed in:5.10.223-1CVE-2024-41009
Fixed in:6.1.98-1CVE-2024-41009
Fixed in:6.9.8-1CVE-2024-41009
Fixed in:6.9.8-1CVE-2024-41009
bpftoolRed Hat / RHEL
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:7.3.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:7.3.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:7.0.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:7.0.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:7.0.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:7.4.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:7.3.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:7.3.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:7.0.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:7.4.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:7.4.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:7.4.0-503.15.1.el9_5RHSA-2024:10274
bpftoolRocky
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:7.3.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:7.3.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:7.4.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:7.0.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:7.4.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:7.4.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:7.0.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:7.3.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:7.0.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:7.0.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:7.3.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:7.4.0-503.15.1.el9_5RHSA-2024:10274
bpftool-debuginfoRocky
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:7.3.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:7.0.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:7.0.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:7.3.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:7.3.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:7.4.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:7.4.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:7.4.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:7.0.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:7.3.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:7.0.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:7.4.0-503.15.1.el9_5RHSA-2024:10274
bpftool-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:7.4.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:7.0.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:7.3.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:7.4.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:7.0.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:7.3.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:7.4.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:7.4.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:7.0.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:7.3.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:7.0.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:7.3.0-427.47.1.el9_4RHSA-2024:10771
kernelRocky
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernelRed Hat / RHEL
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-64kRed Hat / RHEL
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-64kRocky
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-64k-coreRocky
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-64k-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-64k-debugRocky
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-64k-debugRed Hat / RHEL
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-64k-debug-coreRocky
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-64k-debug-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-64k-debug-debuginfoRocky
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-64k-debug-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-64k-debug-develRocky
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-64k-debug-develRed Hat / RHEL
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-64k-debug-devel-matchedRocky
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-64k-debug-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-64k-debug-modulesRed Hat / RHEL
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-64k-debug-modulesRocky
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-64k-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-64k-debug-modules-coreRocky
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-64k-debug-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-64k-debug-modules-extraRocky
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-64k-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-64k-debuginfoRocky
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-64k-develRocky
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-64k-develRed Hat / RHEL
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-64k-devel-matchedRocky
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-64k-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-64k-modulesRocky
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-64k-modulesRed Hat / RHEL
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-64k-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-64k-modules-coreRocky
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-64k-modules-extraRocky
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-64k-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-abi-stablelistsRocky
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-abi-stablelistsRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-coreRocky
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-debugRocky
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-debugRed Hat / RHEL
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-debug-coreRocky
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-debug-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-debug-debuginfoRocky
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-debug-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-debug-develRocky
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-debug-develRed Hat / RHEL
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-debug-devel-matchedRocky
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-debug-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-debug-modulesRocky
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-debug-modulesRed Hat / RHEL
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-debug-modules-coreRocky
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-debug-modules-extraRocky
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-debug-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-debug-uki-virtRocky
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-debug-uki-virtRed Hat / RHEL
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-debuginfoRocky
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-debuginfo-common-aarch64Rocky
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-debuginfo-common-aarch64Red Hat / RHEL
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-debuginfo-common-ppc64leRocky
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-debuginfo-common-ppc64leRed Hat / RHEL
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-debuginfo-common-s390xRocky
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-debuginfo-common-s390xRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-debuginfo-common-x86_64Rocky
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-develRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-develRocky
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-devel-matchedRocky
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-docRed Hat / RHEL
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-docRocky
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-modulesRocky
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-modules-coreRocky
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-modules-extraRocky
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-rtRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
kernel-rtRocky
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-rt-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-rt-coreRocky
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-rt-debugRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
kernel-rt-debugRocky
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-rt-debug-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-rt-debug-coreRocky
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
kernel-rt-debug-debuginfoRocky
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
kernel-rt-debug-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-rt-debug-develRocky
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
kernel-rt-debug-develRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-rt-debug-kvmRocky
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-rt-debug-kvmRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-rt-debug-modulesRocky
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-rt-debug-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-rt-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
kernel-rt-debug-modules-coreRocky
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
kernel-rt-debug-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
kernel-rt-debug-modules-extraRocky
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-rt-debuginfoRocky
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-rt-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-rt-debuginfo-common-x86_64Rocky
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
kernel-rt-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
kernel-rt-develRocky
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-rt-develRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-rt-kvmRocky
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-rt-kvmRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
kernel-rt-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
kernel-rt-modulesRocky
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-rt-modules-coreRocky
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-rt-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-rt-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-rt-modules-extraRocky
Fixed in:0:4.18.0-553.27.1.rt7.368.el8_10RHSA-2024:8870
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.rt14.380.el9_2RHSA-2024:10773
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-toolsRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-toolsRocky
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-tools-debuginfoRocky
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-tools-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-tools-libsRed Hat / RHEL
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-tools-libsRocky
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-tools-libs-develRed Hat / RHEL
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-tools-libs-develRocky
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-uki-virtRocky
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-uki-virtRed Hat / RHEL
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-uki-virt-addonsRed Hat / RHEL
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-uki-virt-addonsRocky
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-zfcpdumpRocky
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-zfcpdumpRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-zfcpdump-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-zfcpdump-coreRocky
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-zfcpdump-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-zfcpdump-debuginfoRocky
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-zfcpdump-develRocky
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-zfcpdump-develRed Hat / RHEL
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
kernel-zfcpdump-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-zfcpdump-devel-matchedRocky
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-zfcpdump-modulesRocky
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-zfcpdump-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-zfcpdump-modules-coreRocky
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-zfcpdump-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
kernel-zfcpdump-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
kernel-zfcpdump-modules-extraRocky
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
libperfRed Hat / RHEL
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
libperfRocky
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
libperf-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
libperf-debuginfoRocky
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
perfRocky
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
perfRed Hat / RHEL
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
perf-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
perf-debuginfoRocky
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
python3-perfRocky
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
python3-perfRed Hat / RHEL
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
python3-perf-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
python3-perf-debuginfoRocky
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-372.123.1.el8_6RHSA-2024:6753
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-477.81.1.el8_8RHSA-2024:10262
Fixed in:0:4.18.0-553.27.1.el8_10RHSA-2024:8856
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
rtlaRed Hat / RHEL
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
rtlaRocky
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
Fixed in:0:5.14.0-284.95.1.el9_2RHSA-2024:10772
rvRocky
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
rvRed Hat / RHEL
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
Fixed in:0:5.14.0-427.47.1.el9_4RHSA-2024:10771
Fixed in:0:5.14.0-503.15.1.el9_5RHSA-2024:10274
linuxUbuntu
Fixed in:5.15.0-122.132USN-7021-1
Fixed in:6.8.0-45.45USN-7020-1
linux-awsUbuntu
Fixed in:5.15.0-1070.76USN-7021-1
Fixed in:6.8.0-1016.17USN-7020-1
linux-aws-5.15Ubuntu
Fixed in:5.15.0-1070.76~20.04.1USN-7021-1
linux-aws-6.8Ubuntu
Fixed in:6.8.0-1016.17~22.04.2USN-7020-4
linux-azureUbuntu
Fixed in:5.15.0-1073.82USN-7021-1
Fixed in:6.8.0-1015.17USN-7020-2
linux-azure-5.15Ubuntu
Fixed in:5.15.0-1073.82~20.04.1USN-7021-1
linux-azure-fdeUbuntu
Fixed in:5.15.0-1073.82.1USN-7021-5
linux-azure-fde-5.15Ubuntu
Fixed in:5.15.0-1073.82~20.04.1.1USN-7021-4
linux-gcpUbuntu
Fixed in:5.15.0-1069.77USN-7021-1
Fixed in:6.8.0-1015.17USN-7020-1
linux-gcp-5.15Ubuntu
Fixed in:5.15.0-1069.77~20.04.1USN-7021-1
linux-gkeUbuntu
Fixed in:5.15.0-1067.73USN-7021-1
Fixed in:6.8.0-1011.14USN-7020-1
linux-gkeopUbuntu
Fixed in:5.15.0-1053.60USN-7021-1
Fixed in:6.8.0-1002.4USN-7156-1
linux-gkeop-5.15Ubuntu
Fixed in:5.15.0-1053.60~20.04.1USN-7021-1
linux-hwe-5.15Ubuntu
Fixed in:5.15.0-122.132~20.04.1USN-7021-1
linux-hwe-6.8Ubuntu
Fixed in:6.8.0-45.45~22.04.1USN-7029-1
linux-ibmUbuntu
Fixed in:5.15.0-1063.66USN-7021-1
Fixed in:6.8.0-1013.13USN-7020-1
linux-ibm-5.15Ubuntu
Fixed in:5.15.0-1063.66~20.04.1USN-7021-2
linux-image-5.15.0-1036-xilinx-zynqmpUbuntu
Fixed in:5.15.0-1036.40USN-7021-2
linux-image-5.15.0-1053-gkeopUbuntu
Fixed in:5.15.0-1053.60~20.04.1USN-7021-1
Fixed in:5.15.0-1053.60USN-7021-1
linux-image-5.15.0-1063-ibmUbuntu
Fixed in:5.15.0-1063.66~20.04.1USN-7021-2
Fixed in:5.15.0-1063.66USN-7021-1
linux-image-5.15.0-1063-raspiUbuntu
Fixed in:5.15.0-1063.66USN-7021-1
linux-image-5.15.0-1065-intel-iotgUbuntu
Fixed in:5.15.0-1065.71~20.04.1USN-7021-1
Fixed in:5.15.0-1065.71USN-7021-1
linux-image-5.15.0-1065-nvidiaUbuntu
Fixed in:5.15.0-1065.66USN-7021-1
linux-image-5.15.0-1065-nvidia-lowlatencyUbuntu
Fixed in:5.15.0-1065.66USN-7021-1
linux-image-5.15.0-1067-gkeUbuntu
Fixed in:5.15.0-1067.73USN-7021-1
linux-image-5.15.0-1067-kvmUbuntu
Fixed in:5.15.0-1067.72USN-7021-1
linux-image-5.15.0-1068-oracleUbuntu
Fixed in:5.15.0-1068.74~20.04.1USN-7021-2
Fixed in:5.15.0-1068.74USN-7021-1
linux-image-5.15.0-1069-gcpUbuntu
Fixed in:5.15.0-1069.77~20.04.1USN-7021-1
Fixed in:5.15.0-1069.77USN-7021-1
linux-image-5.15.0-1070-awsUbuntu
Fixed in:5.15.0-1070.76~20.04.1USN-7021-1
Fixed in:5.15.0-1070.76USN-7021-1
linux-image-5.15.0-1073-azureUbuntu
Fixed in:5.15.0-1073.82~20.04.1USN-7021-1
Fixed in:5.15.0-1073.82USN-7021-1
linux-image-5.15.0-1073-azure-fdeUbuntu
Fixed in:5.15.0-1073.82~20.04.1.1USN-7021-4
Fixed in:5.15.0-1073.82.1USN-7021-5
linux-image-5.15.0-122-genericUbuntu
Fixed in:5.15.0-122.132~20.04.1USN-7021-1
Fixed in:5.15.0-122.132USN-7021-1
linux-image-5.15.0-122-generic-64kUbuntu
Fixed in:5.15.0-122.132~20.04.1USN-7021-1
Fixed in:5.15.0-122.132USN-7021-1
linux-image-5.15.0-122-generic-lpaeUbuntu
Fixed in:5.15.0-122.132~20.04.1USN-7021-1
Fixed in:5.15.0-122.132USN-7021-1
linux-image-5.15.0-122-lowlatencyUbuntu
Fixed in:5.15.0-122.132~20.04.1USN-7021-3
Fixed in:5.15.0-122.132USN-7021-3
linux-image-5.15.0-122-lowlatency-64kUbuntu
Fixed in:5.15.0-122.132~20.04.1USN-7021-3
Fixed in:5.15.0-122.132USN-7021-3
linux-image-6.8.0-1002-gkeopUbuntu
Fixed in:6.8.0-1002.4USN-7156-1
linux-image-6.8.0-1011-gkeUbuntu
Fixed in:6.8.0-1011.14USN-7020-1
linux-image-6.8.0-1012-raspiUbuntu
Fixed in:6.8.0-1012.13USN-7020-3
linux-image-6.8.0-1013-ibmUbuntu
Fixed in:6.8.0-1013.13USN-7020-1
linux-image-6.8.0-1013-oemUbuntu
Fixed in:6.8.0-1013.13USN-7020-1
linux-image-6.8.0-1013-oracleUbuntu
Fixed in:6.8.0-1013.13~22.04.1USN-7020-4
Fixed in:6.8.0-1013.13USN-7020-1
linux-image-6.8.0-1013-oracle-64kUbuntu
Fixed in:6.8.0-1013.13~22.04.1USN-7020-4
Fixed in:6.8.0-1013.13USN-7020-1
linux-image-6.8.0-1014-nvidiaUbuntu
Fixed in:6.8.0-1014.15~22.04.1USN-7020-1
Fixed in:6.8.0-1014.15USN-7020-1
linux-image-6.8.0-1014-nvidia-64kUbuntu
Fixed in:6.8.0-1014.15~22.04.1USN-7020-1
Fixed in:6.8.0-1014.15USN-7020-1
linux-image-6.8.0-1014-nvidia-lowlatencyUbuntu
Fixed in:6.8.0-1014.15.1USN-7020-1
linux-image-6.8.0-1014-nvidia-lowlatency-64kUbuntu
Fixed in:6.8.0-1014.15.1USN-7020-1
linux-image-6.8.0-1015-azureUbuntu
Fixed in:6.8.0-1015.17USN-7020-2
linux-image-6.8.0-1015-azure-fdeUbuntu
Fixed in:6.8.0-1015.17USN-7020-2
linux-image-6.8.0-1015-gcpUbuntu
Fixed in:6.8.0-1015.17USN-7020-1
linux-image-6.8.0-1016-awsUbuntu
Fixed in:6.8.0-1016.17~22.04.2USN-7020-4
Fixed in:6.8.0-1016.17USN-7020-1
linux-image-6.8.0-45-genericUbuntu
Fixed in:6.8.0-45.45~22.04.1USN-7029-1
Fixed in:6.8.0-45.45USN-7020-1
linux-image-6.8.0-45-generic-64kUbuntu
Fixed in:6.8.0-45.45~22.04.1USN-7029-1
Fixed in:6.8.0-45.45USN-7020-1
linux-image-6.8.0-45-lowlatencyUbuntu
Fixed in:6.8.0-45.45.1~22.04.1USN-7020-1
Fixed in:6.8.0-45.45.1USN-7020-1
linux-image-6.8.0-45-lowlatency-64kUbuntu
Fixed in:6.8.0-45.45.1~22.04.1USN-7020-1
Fixed in:6.8.0-45.45.1USN-7020-1
linux-image-awsUbuntu
Fixed in:5.15.0.1070.76~20.04.1USN-7021-1
Fixed in:6.8.0-1016.17~22.04.2USN-7020-4
Fixed in:6.8.0-1016.17USN-7020-1
linux-image-aws-lts-22.04Ubuntu
Fixed in:5.15.0.1070.70USN-7021-1
linux-image-azureUbuntu
Fixed in:5.15.0.1073.82~20.04.1USN-7021-1
Fixed in:6.8.0-1015.17USN-7020-2
linux-image-azure-cvmUbuntu
Fixed in:5.15.0.1073.82~20.04.1USN-7021-1
linux-image-azure-fdeUbuntu
Fixed in:5.15.0.1073.82~20.04.1.50USN-7021-4
Fixed in:6.8.0-1015.17USN-7020-2
linux-image-azure-fde-lts-22.04Ubuntu
Fixed in:5.15.0.1073.82.50USN-7021-5
linux-image-azure-lts-22.04Ubuntu
Fixed in:5.15.0.1073.71USN-7021-1
linux-image-gcpUbuntu
Fixed in:5.15.0.1069.77~20.04.1USN-7021-1
Fixed in:6.8.0-1015.17USN-7020-1
linux-image-gcp-lts-22.04Ubuntu
Fixed in:5.15.0.1069.65USN-7021-1
linux-image-genericUbuntu
Fixed in:5.15.0.122.122USN-7021-1
Fixed in:6.8.0-45.45USN-7020-1
linux-image-generic-64kUbuntu
Fixed in:5.15.0.122.122USN-7021-1
Fixed in:6.8.0-45.45USN-7020-1
linux-image-generic-64k-hwe-20.04Ubuntu
Fixed in:5.15.0.122.132~20.04.1USN-7021-1
linux-image-generic-64k-hwe-22.04Ubuntu
Fixed in:6.8.0-45.45~22.04.1USN-7029-1
linux-image-generic-64k-hwe-24.04Ubuntu
Fixed in:6.8.0-45.45USN-7020-1
linux-image-generic-hwe-20.04Ubuntu
Fixed in:5.15.0.122.132~20.04.1USN-7021-1
linux-image-generic-hwe-22.04Ubuntu
Fixed in:6.8.0-45.45~22.04.1USN-7029-1
linux-image-generic-hwe-24.04Ubuntu
Fixed in:6.8.0-45.45USN-7020-1
linux-image-generic-lpaeUbuntu
Fixed in:5.15.0.122.122USN-7021-1
Fixed in:6.8.0-45.45USN-7020-1
linux-image-generic-lpae-hwe-20.04Ubuntu
Fixed in:5.15.0.122.132~20.04.1USN-7021-1
linux-image-gkeUbuntu
Fixed in:5.15.0.1067.66USN-7021-1
Fixed in:6.8.0-1011.14USN-7020-1
linux-image-gke-5.15Ubuntu
Fixed in:5.15.0.1067.66USN-7021-1
linux-image-gkeopUbuntu
Fixed in:5.15.0.1053.52USN-7021-1
Fixed in:6.8.0-1002.4USN-7156-1
linux-image-gkeop-5.15Ubuntu
Fixed in:5.15.0.1053.60~20.04.1USN-7021-1
Fixed in:5.15.0.1053.52USN-7021-1
linux-image-gkeop-6.8Ubuntu
Fixed in:6.8.0-1002.4USN-7156-1
linux-image-ibmUbuntu
Fixed in:5.15.0.1063.66~20.04.1USN-7021-2
Fixed in:5.15.0.1063.59USN-7021-1
Fixed in:6.8.0-1013.13USN-7020-1
linux-image-ibm-classicUbuntu
Fixed in:6.8.0-1013.13USN-7020-1
linux-image-ibm-lts-24.04Ubuntu
Fixed in:6.8.0-1013.13USN-7020-1
linux-image-intelUbuntu
Fixed in:5.15.0.1065.71~20.04.1USN-7021-1
linux-image-intel-iotgUbuntu
Fixed in:5.15.0.1065.71~20.04.1USN-7021-1
Fixed in:5.15.0.1065.65USN-7021-1
linux-image-kvmUbuntu
Fixed in:5.15.0.1067.63USN-7021-1
Fixed in:6.8.0-45.45USN-7020-1
linux-image-lowlatencyUbuntu
Fixed in:5.15.0.122.111USN-7021-3
Fixed in:6.8.0-45.45.1USN-7020-1
linux-image-lowlatency-64kUbuntu
Fixed in:5.15.0.122.111USN-7021-3
Fixed in:6.8.0-45.45.1USN-7020-1
linux-image-lowlatency-64k-hwe-20.04Ubuntu
Fixed in:5.15.0.122.132~20.04.1USN-7021-3
linux-image-lowlatency-64k-hwe-22.04Ubuntu
Fixed in:6.8.0-45.45.1~22.04.1USN-7020-1
linux-image-lowlatency-hwe-20.04Ubuntu
Fixed in:5.15.0.122.132~20.04.1USN-7021-3
linux-image-lowlatency-hwe-22.04Ubuntu
Fixed in:6.8.0-45.45.1~22.04.1USN-7020-1
linux-image-nvidiaUbuntu
Fixed in:5.15.0.1065.65USN-7021-1
Fixed in:6.8.0-1014.15USN-7020-1
linux-image-nvidia-6.8Ubuntu
Fixed in:6.8.0-1014.15~22.04.1USN-7020-1
linux-image-nvidia-64kUbuntu
Fixed in:6.8.0-1014.15USN-7020-1
linux-image-nvidia-64k-6.8Ubuntu
Fixed in:6.8.0-1014.15~22.04.1USN-7020-1
linux-image-nvidia-lowlatencyUbuntu
Fixed in:5.15.0.1065.65USN-7021-1
Fixed in:6.8.0-1014.15.1USN-7020-1
linux-image-nvidia-lowlatency-64kUbuntu
Fixed in:6.8.0-1014.15.1USN-7020-1
linux-image-oem-20.04Ubuntu
Fixed in:5.15.0.122.132~20.04.1USN-7021-1
linux-image-oem-20.04bUbuntu
Fixed in:5.15.0.122.132~20.04.1USN-7021-1
linux-image-oem-20.04cUbuntu
Fixed in:5.15.0.122.132~20.04.1USN-7021-1
linux-image-oem-20.04dUbuntu
Fixed in:5.15.0.122.132~20.04.1USN-7021-1
linux-image-oem-22.04Ubuntu
Fixed in:6.8.0-45.45~22.04.1USN-7029-1
linux-image-oem-22.04aUbuntu
Fixed in:6.8.0-45.45~22.04.1USN-7029-1
linux-image-oem-22.04bUbuntu
Fixed in:6.8.0-45.45~22.04.1USN-7029-1
linux-image-oem-22.04cUbuntu
Fixed in:6.8.0-45.45~22.04.1USN-7029-1
linux-image-oem-22.04dUbuntu
Fixed in:6.8.0-45.45~22.04.1USN-7029-1
linux-image-oem-24.04Ubuntu
Fixed in:6.8.0-1013.13USN-7020-1
linux-image-oem-24.04aUbuntu
Fixed in:6.8.0-1013.13USN-7020-1
linux-image-oracleUbuntu
Fixed in:5.15.0.1068.74~20.04.1USN-7021-2
Fixed in:6.8.0-1013.13~22.04.1USN-7020-4
Fixed in:6.8.0-1013.13USN-7020-1
linux-image-oracle-64kUbuntu
Fixed in:6.8.0-1013.13~22.04.1USN-7020-4
Fixed in:6.8.0-1013.13USN-7020-1
linux-image-oracle-lts-22.04Ubuntu
Fixed in:5.15.0.1068.64USN-7021-1
linux-image-raspiUbuntu
Fixed in:5.15.0.1063.61USN-7021-1
Fixed in:6.8.0-1012.13USN-7020-3
linux-image-raspi-nolpaeUbuntu
Fixed in:5.15.0.1063.61USN-7021-1
linux-image-virtualUbuntu
Fixed in:5.15.0.122.122USN-7021-1
Fixed in:6.8.0-45.45USN-7020-1
linux-image-virtual-hwe-20.04Ubuntu
Fixed in:5.15.0.122.132~20.04.1USN-7021-1
linux-image-virtual-hwe-22.04Ubuntu
Fixed in:6.8.0-45.45~22.04.1USN-7029-1
linux-image-virtual-hwe-24.04Ubuntu
Fixed in:6.8.0-45.45USN-7020-1
linux-image-xilinx-zynqmpUbuntu
Fixed in:5.15.0.1036.40USN-7021-2
linux-intel-iotgUbuntu
Fixed in:5.15.0-1065.71USN-7021-1
linux-intel-iotg-5.15Ubuntu
Fixed in:5.15.0-1065.71~20.04.1USN-7021-1
linux-kvmUbuntu
Fixed in:5.15.0-1067.72USN-7021-1
linux-lowlatencyUbuntu
Fixed in:5.15.0-122.132USN-7021-3
Fixed in:6.8.0-45.45.1USN-7020-1
linux-lowlatency-hwe-5.15Ubuntu
Fixed in:5.15.0-122.132~20.04.1USN-7021-3
linux-lowlatency-hwe-6.8Ubuntu
Fixed in:6.8.0-45.45.1~22.04.1USN-7020-1
linux-nvidiaUbuntu
Fixed in:5.15.0-1065.66USN-7021-1
Fixed in:6.8.0-1014.15USN-7020-1
linux-nvidia-6.8Ubuntu
Fixed in:6.8.0-1014.15~22.04.1USN-7020-1
linux-nvidia-lowlatencyUbuntu
Fixed in:6.8.0-1014.15.1USN-7020-1
linux-oem-6.8Ubuntu
Fixed in:6.8.0-1013.13USN-7020-1
linux-oracleUbuntu
Fixed in:5.15.0-1068.74USN-7021-1
Fixed in:6.8.0-1013.13USN-7020-1
linux-oracle-5.15Ubuntu
Fixed in:5.15.0-1068.74~20.04.1USN-7021-2
linux-oracle-6.8Ubuntu
Fixed in:6.8.0-1013.13~22.04.1USN-7020-4
linux-raspiUbuntu
Fixed in:5.15.0-1063.66USN-7021-1
Fixed in:6.8.0-1012.13USN-7020-3
linux-xilinx-zynqmpUbuntu
Fixed in:5.15.0-1036.40USN-7021-2

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

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

References

Related Vulnerabilities

Other CWE-770 (Allocation of Resources Without Limits or Throttling) vulnerabilities, ordered by exploit likelihood. View all

CVESeverityCVSSEPSSExploitedFix
CVE-2023-50387High7.5100%-Fix
CVE-2019-11478Medium5.395%-Fix
CVE-2019-11479High7.592%-Fix
CVE-2024-27316High7.591%-Fix
CVE-2022-30522High7.590%-Fix
CVE-2019-9515High7.588%-Fix
Embed a live status badge for CVE-2024-41009
CVE-2024-41009 severity badge

Markdown

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

HTML

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