RHSA-2026:36957
Vulnerability from csaf_redhat - Published: 2026-07-09 03:46 - Updated: 2026-07-10 16:54In the Linux kernel, the following vulnerability has been resolved: net/sched: ets: Always remove class from active list before deleting in ets_qdisc_change zdi-disclosures@trendmicro.com says: The vulnerability is a race condition between `ets_qdisc_dequeue` and `ets_qdisc_change`. It leads to UAF on `struct Qdisc` object. Attacker requires the capability to create new user and network namespace in order to trigger the bug. See my additional commentary at the end of the analysis. Analysis: static int ets_qdisc_change(struct Qdisc *sch, struct nlattr *opt, struct netlink_ext_ack *extack) { ... // (1) this lock is preventing .change handler (`ets_qdisc_change`) //to race with .dequeue handler (`ets_qdisc_dequeue`) sch_tree_lock(sch); for (i = nbands; i < oldbands; i++) { if (i >= q->nstrict && q->classes[i].qdisc->q.qlen) list_del_init(&q->classes[i].alist); qdisc_purge_queue(q->classes[i].qdisc); } WRITE_ONCE(q->nbands, nbands); for (i = nstrict; i < q->nstrict; i++) { if (q->classes[i].qdisc->q.qlen) { // (2) the class is added to the q->active list_add_tail(&q->classes[i].alist, &q->active); q->classes[i].deficit = quanta[i]; } } WRITE_ONCE(q->nstrict, nstrict); memcpy(q->prio2band, priomap, sizeof(priomap)); for (i = 0; i < q->nbands; i++) WRITE_ONCE(q->classes[i].quantum, quanta[i]); for (i = oldbands; i < q->nbands; i++) { q->classes[i].qdisc = queues[i]; if (q->classes[i].qdisc != &noop_qdisc) qdisc_hash_add(q->classes[i].qdisc, true); } // (3) the qdisc is unlocked, now dequeue can be called in parallel // to the rest of .change handler sch_tree_unlock(sch); ets_offload_change(sch); for (i = q->nbands; i < oldbands; i++) { // (4) we're reducing the refcount for our class's qdisc and // freeing it qdisc_put(q->classes[i].qdisc); // (5) If we call .dequeue between (4) and (5), we will have // a strong UAF and we can control RIP q->classes[i].qdisc = NULL; WRITE_ONCE(q->classes[i].quantum, 0); q->classes[i].deficit = 0; gnet_stats_basic_sync_init(&q->classes[i].bstats); memset(&q->classes[i].qstats, 0, sizeof(q->classes[i].qstats)); } return 0; } Comment: This happens because some of the classes have their qdiscs assigned to NULL, but remain in the active list. This commit fixes this issue by always removing the class from the active list before deleting and freeing its associated qdisc Reproducer Steps (trimmed version of what was sent by zdi-disclosures@trendmicro.com) ``` DEV="${DEV:-lo}" ROOT_HANDLE="${ROOT_HANDLE:-1:}" BAND2_HANDLE="${BAND2_HANDLE:-20:}" # child under 1:2 PING_BYTES="${PING_BYTES:-48}" PING_COUNT="${PING_COUNT:-200000}" PING_DST="${PING_DST:-127.0.0.1}" SLOW_TBF_RATE="${SLOW_TBF_RATE:-8bit}" SLOW_TBF_BURST="${SLOW_TBF_BURST:-100b}" SLOW_TBF_LAT="${SLOW_TBF_LAT:-1s}" cleanup() { tc qdisc del dev "$DEV" root 2>/dev/null } trap cleanup EXIT ip link set "$DEV" up tc qdisc del dev "$DEV" root 2>/dev/null || true tc qdisc add dev "$DEV" root handle "$ROOT_HANDLE" ets bands 2 strict 2 tc qdisc add dev "$DEV" parent 1:2 handle "$BAND2_HANDLE" \ tbf rate "$SLOW_TBF_RATE" burst "$SLOW_TBF_BURST" latency "$SLOW_TBF_LAT" tc filter add dev "$DEV" parent 1: protocol all prio 1 u32 match u32 0 0 flowid 1:2 tc -s qdisc ls dev $DEV ping -I "$DEV" -f -c "$PING_COUNT" -s "$PING_BYTES" -W 0.001 "$PING_DST" \ >/dev/null 2>&1 & tc qdisc change dev "$DEV" root handle "$ROOT_HANDLE" ets bands 2 strict 0 tc qdisc change dev "$DEV" root handle "$ROOT_HANDLE" ets bands 2 strict 2 tc -s qdisc ls dev $DEV tc qdisc del dev "$DEV" parent ---truncated---
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.24.1.el9_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.24.1.el9_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in the Linux kernel's KVM (Kernel-based Virtual Machine) x86 shadow paging mechanism. This use-after-free vulnerability arises from incorrect handling of Guest Frame Numbers (GFNs) when guest page tables are modified. A local attacker with control over a guest virtual machine could exploit this to dereference freed memory, potentially leading to information disclosure, privilege escalation, or a denial of service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.24.1.el9_8.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.24.1.el9_8.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the Linux kernel's Kernel-based Virtual Machine (KVM) x86 shadow paging mechanism. This vulnerability occurs when a host page directory entry (PDE) mapping is changed from within the guest, leading to an unexpected role mismatch in shadow paging. This mismatch can cause a use-after-free condition, where the system attempts to access memory that has already been released. Such a condition can lead to system instability, denial of service, potentially the execution of arbitrary code or guest-to-host escape.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.24.1.el9_8.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.24.1.el9_8.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update for kernel is now available for Red Hat Enterprise Linux 9.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "The kernel packages contain the Linux kernel, the core of any Linux operating system.\n\nSecurity Fix(es):\n\n* kernel: net/sched: ets: Always remove class from active list before deleting in ets_qdisc_change (CVE-2025-71066)\n\n* kernel: KVM: x86: Fix shadow paging use-after-free due to unexpected GFN (CVE-2026-46113)\n\n* kernel: KVM: x86: Fix shadow paging use-after-free due to unexpected role (CVE-2026-53359)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:36957",
"url": "https://access.redhat.com/errata/RHSA-2026:36957"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2429036",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2429036"
},
{
"category": "external",
"summary": "2482587",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482587"
},
{
"category": "external",
"summary": "2497033",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2497033"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_36957.json"
}
],
"title": "Red Hat Security Advisory: kernel security update",
"tracking": {
"current_release_date": "2026-07-10T16:54:06+00:00",
"generator": {
"date": "2026-07-10T16:54:06+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.2"
}
},
"id": "RHSA-2026:36957",
"initial_release_date": "2026-07-09T03:46:32+00:00",
"revision_history": [
{
"date": "2026-07-09T03:46:32+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-07-09T03:46:32+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-07-10T16:54:06+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream (v. 9)",
"product": {
"name": "Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:enterprise_linux:9::appstream"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux BaseOS (v. 9)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:9::baseos"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product": {
"name": "Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:enterprise_linux:9::crb"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product": {
"name": "Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:enterprise_linux:9::nfv"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux Real Time (v. 9)",
"product": {
"name": "Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:enterprise_linux:9::realtime"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-0:5.14.0-687.24.1.el9_8.src",
"product": {
"name": "kernel-0:5.14.0-687.24.1.el9_8.src",
"product_id": "kernel-0:5.14.0-687.24.1.el9_8.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-687.24.1.el9_8?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-core@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-core@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules-core@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules-extra@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules-core@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules-extra@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-tools-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-tools-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-tools-libs-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-tools-libs-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-debuginfo@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debuginfo@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-aarch64@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-debuginfo@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debuginfo@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debuginfo@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "libperf-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "libperf-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "libperf-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-devel@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-64k-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-devel-matched@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-devel@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-64k-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-devel-matched@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "perf-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "perf-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "python3-perf-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "python3-perf-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "rtla-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "rtla-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "rv-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "rv-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "rv-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-core@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-core@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-devel@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-modules@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-modules-core@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-modules-extra@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-devel@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-modules@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-modules-core@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-modules-extra@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-core@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-core@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-devel@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-core@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-extra@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-devel@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-core@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"product_id": "kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-extra@5.14.0-687.24.1.el9_8?arch=aarch64"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "kernel-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "kernel-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "kernel-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "kernel-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "kernel-debug-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "kernel-debug-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "kernel-debug-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "kernel-debug-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "kernel-debug-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "kernel-debug-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "kernel-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "kernel-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "kernel-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "kernel-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "kernel-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "kernel-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "kernel-tools-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "kernel-tools-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "kernel-tools-libs-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "kernel-tools-libs-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-ppc64le@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "libperf-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "libperf-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "libperf-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "kernel-debug-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "kernel-debug-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "kernel-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "kernel-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "kernel-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "kernel-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "python3-perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "python3-perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "rtla-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "rtla-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "rv-0:5.14.0-687.24.1.el9_8.ppc64le",
"product": {
"name": "rv-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_id": "rv-0:5.14.0-687.24.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@5.14.0-687.24.1.el9_8?arch=ppc64le"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-core-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-core-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-debug-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-debug-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-uki-virt@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-tools-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-tools-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-tools-libs-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-tools-libs-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-uki-virt@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-uki-virt-addons-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-uki-virt-addons-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-uki-virt-addons-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-uki-virt-addons@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debuginfo@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "libperf-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "libperf-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "libperf-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "perf-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "perf-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "python3-perf-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "python3-perf-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "rtla-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "rtla-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "rv-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "rv-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "rv-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-core@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-core@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-devel@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-core@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-extra@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-devel@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-core@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"product_id": "kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-extra@5.14.0-687.24.1.el9_8?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-core-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-core-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-debug-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-debug-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-debug-core-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-debug-core-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-debug-modules-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-debug-modules-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-modules-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-modules-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-tools-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-tools-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-zfcpdump-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-zfcpdump-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-core-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-zfcpdump-core-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-zfcpdump-core-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-core@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-zfcpdump-modules-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-zfcpdump-modules-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-zfcpdump-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-zfcpdump-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-core@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-zfcpdump-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-zfcpdump-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-extra@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-s390x@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-debuginfo@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "libperf-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "libperf-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "libperf-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-debug-devel-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-debug-devel-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-devel-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-devel-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-devel-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-zfcpdump-devel-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-zfcpdump-devel-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-devel@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "kernel-zfcpdump-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "kernel-zfcpdump-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-devel-matched@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "perf-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "perf-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "python3-perf-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "python3-perf-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "rtla-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "rtla-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "rv-0:5.14.0-687.24.1.el9_8.s390x",
"product": {
"name": "rv-0:5.14.0-687.24.1.el9_8.s390x",
"product_id": "rv-0:5.14.0-687.24.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@5.14.0-687.24.1.el9_8?arch=s390x"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-abi-stablelists-0:5.14.0-687.24.1.el9_8.noarch",
"product": {
"name": "kernel-abi-stablelists-0:5.14.0-687.24.1.el9_8.noarch",
"product_id": "kernel-abi-stablelists-0:5.14.0-687.24.1.el9_8.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-abi-stablelists@5.14.0-687.24.1.el9_8?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "kernel-doc-0:5.14.0-687.24.1.el9_8.noarch",
"product": {
"name": "kernel-doc-0:5.14.0-687.24.1.el9_8.noarch",
"product_id": "kernel-doc-0:5.14.0-687.24.1.el9_8.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-doc@5.14.0-687.24.1.el9_8?arch=noarch"
}
}
}
],
"category": "architecture",
"name": "noarch"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-debug-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-debug-devel-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-devel-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-doc-0:5.14.0-687.24.1.el9_8.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.24.1.el9_8.noarch"
},
"product_reference": "kernel-doc-0:5.14.0-687.24.1.el9_8.noarch",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-devel-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-zfcpdump-devel-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-devel-matched-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-zfcpdump-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "perf-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "perf-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "perf-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "python3-perf-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "python3-perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "python3-perf-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "python3-perf-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "rtla-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "rtla-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "rtla-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "rtla-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "rv-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "rv-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "rv-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "rv-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-687.24.1.el9_8.src as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.src"
},
"product_reference": "kernel-0:5.14.0-687.24.1.el9_8.src",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-core-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-abi-stablelists-0:5.14.0-687.24.1.el9_8.noarch as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.24.1.el9_8.noarch"
},
"product_reference": "kernel-abi-stablelists-0:5.14.0-687.24.1.el9_8.noarch",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-core-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-core-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-core-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-debug-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-debug-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-debug-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-debug-core-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-debug-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-debug-modules-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-modules-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-tools-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-tools-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-tools-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-tools-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-tools-libs-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-tools-libs-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-tools-libs-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-uki-virt-addons-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-uki-virt-addons-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-zfcpdump-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-core-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-zfcpdump-core-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-zfcpdump-modules-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-core-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-zfcpdump-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-extra-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-zfcpdump-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "libperf-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "libperf-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "libperf-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "libperf-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-core-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-core-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-core-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-71066",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"discovery_date": "2026-01-13T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2429036"
}
],
"notes": [
{
"category": "description",
"text": "In the Linux kernel, the following vulnerability has been resolved:\n\nnet/sched: ets: Always remove class from active list before deleting in ets_qdisc_change\n\nzdi-disclosures@trendmicro.com says:\n\nThe vulnerability is a race condition between `ets_qdisc_dequeue` and\n`ets_qdisc_change`. It leads to UAF on `struct Qdisc` object.\nAttacker requires the capability to create new user and network namespace\nin order to trigger the bug.\nSee my additional commentary at the end of the analysis.\n\nAnalysis:\n\nstatic int ets_qdisc_change(struct Qdisc *sch, struct nlattr *opt,\n struct netlink_ext_ack *extack)\n{\n...\n\n // (1) this lock is preventing .change handler (`ets_qdisc_change`)\n //to race with .dequeue handler (`ets_qdisc_dequeue`)\n sch_tree_lock(sch);\n\n for (i = nbands; i \u003c oldbands; i++) {\n if (i \u003e= q-\u003enstrict \u0026\u0026 q-\u003eclasses[i].qdisc-\u003eq.qlen)\n list_del_init(\u0026q-\u003eclasses[i].alist);\n qdisc_purge_queue(q-\u003eclasses[i].qdisc);\n }\n\n WRITE_ONCE(q-\u003enbands, nbands);\n for (i = nstrict; i \u003c q-\u003enstrict; i++) {\n if (q-\u003eclasses[i].qdisc-\u003eq.qlen) {\n\t\t // (2) the class is added to the q-\u003eactive\n list_add_tail(\u0026q-\u003eclasses[i].alist, \u0026q-\u003eactive);\n q-\u003eclasses[i].deficit = quanta[i];\n }\n }\n WRITE_ONCE(q-\u003enstrict, nstrict);\n memcpy(q-\u003eprio2band, priomap, sizeof(priomap));\n\n for (i = 0; i \u003c q-\u003enbands; i++)\n WRITE_ONCE(q-\u003eclasses[i].quantum, quanta[i]);\n\n for (i = oldbands; i \u003c q-\u003enbands; i++) {\n q-\u003eclasses[i].qdisc = queues[i];\n if (q-\u003eclasses[i].qdisc != \u0026noop_qdisc)\n qdisc_hash_add(q-\u003eclasses[i].qdisc, true);\n }\n\n // (3) the qdisc is unlocked, now dequeue can be called in parallel\n // to the rest of .change handler\n sch_tree_unlock(sch);\n\n ets_offload_change(sch);\n for (i = q-\u003enbands; i \u003c oldbands; i++) {\n\t // (4) we\u0027re reducing the refcount for our class\u0027s qdisc and\n\t // freeing it\n qdisc_put(q-\u003eclasses[i].qdisc);\n\t // (5) If we call .dequeue between (4) and (5), we will have\n\t // a strong UAF and we can control RIP\n q-\u003eclasses[i].qdisc = NULL;\n WRITE_ONCE(q-\u003eclasses[i].quantum, 0);\n q-\u003eclasses[i].deficit = 0;\n gnet_stats_basic_sync_init(\u0026q-\u003eclasses[i].bstats);\n memset(\u0026q-\u003eclasses[i].qstats, 0, sizeof(q-\u003eclasses[i].qstats));\n }\n return 0;\n}\n\nComment:\nThis happens because some of the classes have their qdiscs assigned to\nNULL, but remain in the active list. This commit fixes this issue by always\nremoving the class from the active list before deleting and freeing its\nassociated qdisc\n\nReproducer Steps\n(trimmed version of what was sent by zdi-disclosures@trendmicro.com)\n\n```\nDEV=\"${DEV:-lo}\"\nROOT_HANDLE=\"${ROOT_HANDLE:-1:}\"\nBAND2_HANDLE=\"${BAND2_HANDLE:-20:}\" # child under 1:2\nPING_BYTES=\"${PING_BYTES:-48}\"\nPING_COUNT=\"${PING_COUNT:-200000}\"\nPING_DST=\"${PING_DST:-127.0.0.1}\"\n\nSLOW_TBF_RATE=\"${SLOW_TBF_RATE:-8bit}\"\nSLOW_TBF_BURST=\"${SLOW_TBF_BURST:-100b}\"\nSLOW_TBF_LAT=\"${SLOW_TBF_LAT:-1s}\"\n\ncleanup() {\n tc qdisc del dev \"$DEV\" root 2\u003e/dev/null\n}\ntrap cleanup EXIT\n\nip link set \"$DEV\" up\n\ntc qdisc del dev \"$DEV\" root 2\u003e/dev/null || true\n\ntc qdisc add dev \"$DEV\" root handle \"$ROOT_HANDLE\" ets bands 2 strict 2\n\ntc qdisc add dev \"$DEV\" parent 1:2 handle \"$BAND2_HANDLE\" \\\n tbf rate \"$SLOW_TBF_RATE\" burst \"$SLOW_TBF_BURST\" latency \"$SLOW_TBF_LAT\"\n\ntc filter add dev \"$DEV\" parent 1: protocol all prio 1 u32 match u32 0 0 flowid 1:2\ntc -s qdisc ls dev $DEV\n\nping -I \"$DEV\" -f -c \"$PING_COUNT\" -s \"$PING_BYTES\" -W 0.001 \"$PING_DST\" \\\n \u003e/dev/null 2\u003e\u00261 \u0026\ntc qdisc change dev \"$DEV\" root handle \"$ROOT_HANDLE\" ets bands 2 strict 0\ntc qdisc change dev \"$DEV\" root handle \"$ROOT_HANDLE\" ets bands 2 strict 2\ntc -s qdisc ls dev $DEV\ntc qdisc del dev \"$DEV\" parent \n---truncated---",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: net/sched: ets: Always remove class from active list before deleting in ets_qdisc_change",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "A race between ets_qdisc_change() and ets_qdisc_dequeue() can leave an ETS class on the active list while its associated struct Qdisc is being freed, leading to a use-after-free in the dequeue path. The issue is triggered via local traffic-control reconfiguration (tc/netlink) combined with concurrent packet transmission, typically within user/network namespaces.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.24.1.el9_8.noarch",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.src",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.24.1.el9_8.noarch",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-71066"
},
{
"category": "external",
"summary": "RHBZ#2429036",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2429036"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-71066",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-71066"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-71066",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-71066"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026011323-CVE-2025-71066-f1fa@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026011323-CVE-2025-71066-f1fa@gregkh/T"
}
],
"release_date": "2026-01-13T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-09T03:46:32+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.24.1.el9_8.noarch",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.src",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.24.1.el9_8.noarch",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:36957"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 6.2,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.24.1.el9_8.noarch",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.src",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.24.1.el9_8.noarch",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: net/sched: ets: Always remove class from active list before deleting in ets_qdisc_change"
},
{
"cve": "CVE-2026-46113",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"discovery_date": "2026-05-28T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2482587"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel\u0027s KVM (Kernel-based Virtual Machine) x86 shadow paging mechanism. This use-after-free vulnerability arises from incorrect handling of Guest Frame Numbers (GFNs) when guest page tables are modified. A local attacker with control over a guest virtual machine could exploit this to dereference freed memory, potentially leading to information disclosure, privilege escalation, or a denial of service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: KVM: x86: Fix shadow paging use-after-free due to unexpected GFN",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The attack vector is from the guest to the host if KVM being used (and Shadow paging being used). KVM x86 shadow paging can leave a stale rmap entry when a direct shadow page is reused with an unexpected GFN after guest page table changes between VM entries. Later memslot deletion, dirty logging, or MMU notifier invalidation can walk the stale rmap and dereference a freed kvm_mmu_page, resulting in a use-after-free in the host kernel. For the CVSS the PR:L is used because a local actor with access to KVM or control of a guest execution context can influence the guest mappings and related memory management operations. The issue is not a normal network reachable bug, but it can cross the guest to host boundary in virtualized deployments. Impact is at least host denial of service and in the paranoid score may include confidentiality and integrity impact due to a plausible UAF based memory corruption primitive.\nFor the paranoid score, choose the highest still-defensible interpretation supported by the bug class and patch context, with preference for manual-review sensitivity over autoclosed false negat\nives.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.24.1.el9_8.noarch",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.src",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.24.1.el9_8.noarch",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-46113"
},
{
"category": "external",
"summary": "RHBZ#2482587",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482587"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-46113",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46113"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-46113",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-46113"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026052813-CVE-2026-46113-f083@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026052813-CVE-2026-46113-f083@gregkh/T"
}
],
"release_date": "2026-05-28T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-09T03:46:32+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.24.1.el9_8.noarch",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.src",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.24.1.el9_8.noarch",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:36957"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options don\u0027t meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.24.1.el9_8.noarch",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.src",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.24.1.el9_8.noarch",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 5.8,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.24.1.el9_8.noarch",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.src",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.24.1.el9_8.noarch",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: KVM: x86: Fix shadow paging use-after-free due to unexpected GFN"
},
{
"cve": "CVE-2026-53359",
"cwe": {
"id": "CWE-825",
"name": "Expired Pointer Dereference"
},
"discovery_date": "2026-07-04T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2497033"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel\u0027s Kernel-based Virtual Machine (KVM) x86 shadow paging mechanism. This vulnerability occurs when a host page directory entry (PDE) mapping is changed from within the guest, leading to an unexpected role mismatch in shadow paging. This mismatch can cause a use-after-free condition, where the system attempts to access memory that has already been released. Such a condition can lead to system instability, denial of service, potentially the execution of arbitrary code or guest-to-host escape.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: KVM: x86: Fix shadow paging use-after-free due to unexpected role",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important flaw in the KVM x86 shadow paging mechanism where an attacker with privileged access inside the guest VM could trigger a use-after-free condition by manipulating page directory entries on the host. This could lead to system instability, denial of service, or potentially arbitrary code execution on the host.\n\nIn Red Hat Enterprise Linux 7, nested virtualization for KVM is a Technology Preview feature and the nested parameter defaults to 0 (disabled) for both kvm_intel and kvm_amd.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.24.1.el9_8.noarch",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.src",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.24.1.el9_8.noarch",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-53359"
},
{
"category": "external",
"summary": "RHBZ#2497033",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2497033"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-53359",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-53359"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-53359",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-53359"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026070403-CVE-2026-53359-4f57@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026070403-CVE-2026-53359-4f57@gregkh/T"
},
{
"category": "external",
"summary": "https://www.openwall.com/lists/oss-security/2026/07/06/7",
"url": "https://www.openwall.com/lists/oss-security/2026/07/06/7"
}
],
"release_date": "2026-07-04T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-09T03:46:32+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.24.1.el9_8.noarch",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.src",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.24.1.el9_8.noarch",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:36957"
},
{
"category": "workaround",
"details": "This vulnerability can be mitigated by disabling nested virtualization. Create a file in `/etc/modprobe.d/` with a descriptive name, such as `cve-2026-53359-mitigation.conf`. In that file, disable nested virtualization for the `kvm_intel` and `kvm_amd` kernel modules:\n```\noptions kvm-intel nested=0\noptions kvm-amd nested=0\n```\n\nUse `lsmod` to determine if either module is already loaded. If so, remove loaded modules with `modprobe -r`. To validate that nested virtualization is disabled, read the files `/sys/module/kvm_intel/parameters/nested` and `/sys/module/kvm_amd/parameters/nested`. If these modules are loaded, those files should read `N` to indicate that the feature is disabled.\n\nIn OpenShift 4, a MachineConfig can be utilized to create a modprobe configuration allowing control of the module on applicable nodes. See the following article for an example.\n\nhttps://access.redhat.com/solutions/6979679",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.24.1.el9_8.noarch",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.src",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.24.1.el9_8.noarch",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.24.1.el9_8.noarch",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.24.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.src",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.24.1.el9_8.noarch",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.24.1.el9_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "kernel: KVM: x86: Fix shadow paging use-after-free due to unexpected role"
}
]
}
Sightings
| Author | Source | Type | Date | Other |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or observed by the user.
- Confirmed: The vulnerability has been validated from an analyst's perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
- Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
- Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
- Not confirmed: The user expressed doubt about the validity of the vulnerability.
- Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.