Action not permitted
Modal body text goes here.
cve-2024-42243
Vulnerability from cvelistv5
{ "containers": { "adp": [ { "metrics": [ { "other": { "content": { "id": "CVE-2024-42243", "options": [ { "Exploitation": "none" }, { "Automatable": "no" }, { "Technical Impact": "partial" } ], "role": "CISA Coordinator", "timestamp": "2024-09-10T16:13:41.421528Z", "version": "2.0.3" }, "type": "ssvc" } } ], "providerMetadata": { "dateUpdated": "2024-09-11T17:34:31.465Z", "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "shortName": "CISA-ADP" }, "title": "CISA ADP Vulnrichment" } ], "cna": { "affected": [ { "defaultStatus": "unaffected", "product": "Linux", "programFiles": [ "include/linux/pagemap.h" ], "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git", "vendor": "Linux", "versions": [ { "lessThan": "a0c42ddd0969", "status": "affected", "version": "793917d997df", "versionType": "git" }, { "lessThan": "333c5539a31f", "status": "affected", "version": "793917d997df", "versionType": "git" }, { "lessThan": "099d90642a71", "status": "affected", "version": "793917d997df", "versionType": "git" } ] }, { "defaultStatus": "affected", "product": "Linux", "programFiles": [ "include/linux/pagemap.h" ], "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git", "vendor": "Linux", "versions": [ { "status": "affected", "version": "5.18" }, { "lessThan": "5.18", "status": "unaffected", "version": "0", "versionType": "semver" }, { "lessThanOrEqual": "6.6.*", "status": "unaffected", "version": "6.6.41", "versionType": "semver" }, { "lessThanOrEqual": "6.9.*", "status": "unaffected", "version": "6.9.10", "versionType": "semver" }, { "lessThanOrEqual": "*", "status": "unaffected", "version": "6.10", "versionType": "original_commit_for_fix" } ] } ], "descriptions": [ { "lang": "en", "value": "In the Linux kernel, the following vulnerability has been resolved:\n\nmm/filemap: make MAX_PAGECACHE_ORDER acceptable to xarray\n\nPatch series \"mm/filemap: Limit page cache size to that supported by\nxarray\", v2.\n\nCurrently, xarray can\u0027t support arbitrary page cache size. More details\ncan be found from the WARN_ON() statement in xas_split_alloc(). In our\ntest whose code is attached below, we hit the WARN_ON() on ARM64 system\nwhere the base page size is 64KB and huge page size is 512MB. The issue\nwas reported long time ago and some discussions on it can be found here\n[1].\n\n[1] https://www.spinics.net/lists/linux-xfs/msg75404.html\n\nIn order to fix the issue, we need to adjust MAX_PAGECACHE_ORDER to one\nsupported by xarray and avoid PMD-sized page cache if needed. The code\nchanges are suggested by David Hildenbrand.\n\nPATCH[1] adjusts MAX_PAGECACHE_ORDER to that supported by xarray\nPATCH[2-3] avoids PMD-sized page cache in the synchronous readahead path\nPATCH[4] avoids PMD-sized page cache for shmem files if needed\n\nTest program\n============\n# cat test.c\n#define _GNU_SOURCE\n#include \u003cstdio.h\u003e\n#include \u003cstdlib.h\u003e\n#include \u003cunistd.h\u003e\n#include \u003cstring.h\u003e\n#include \u003cfcntl.h\u003e\n#include \u003cerrno.h\u003e\n#include \u003csys/syscall.h\u003e\n#include \u003csys/mman.h\u003e\n\n#define TEST_XFS_FILENAME\t\"/tmp/data\"\n#define TEST_SHMEM_FILENAME\t\"/dev/shm/data\"\n#define TEST_MEM_SIZE\t\t0x20000000\n\nint main(int argc, char **argv)\n{\n\tconst char *filename;\n\tint fd = 0;\n\tvoid *buf = (void *)-1, *p;\n\tint pgsize = getpagesize();\n\tint ret;\n\n\tif (pgsize != 0x10000) {\n\t\tfprintf(stderr, \"64KB base page size is required\\n\");\n\t\treturn -EPERM;\n\t}\n\n\tsystem(\"echo force \u003e /sys/kernel/mm/transparent_hugepage/shmem_enabled\");\n\tsystem(\"rm -fr /tmp/data\");\n\tsystem(\"rm -fr /dev/shm/data\");\n\tsystem(\"echo 1 \u003e /proc/sys/vm/drop_caches\");\n\n\t/* Open xfs or shmem file */\n\tfilename = TEST_XFS_FILENAME;\n\tif (argc \u003e 1 \u0026\u0026 !strcmp(argv[1], \"shmem\"))\n\t\tfilename = TEST_SHMEM_FILENAME;\n\n\tfd = open(filename, O_CREAT | O_RDWR | O_TRUNC);\n\tif (fd \u003c 0) {\n\t\tfprintf(stderr, \"Unable to open \u003c%s\u003e\\n\", filename);\n\t\treturn -EIO;\n\t}\n\n\t/* Extend file size */\n\tret = ftruncate(fd, TEST_MEM_SIZE);\n\tif (ret) {\n\t\tfprintf(stderr, \"Error %d to ftruncate()\\n\", ret);\n\t\tgoto cleanup;\n\t}\n\n\t/* Create VMA */\n\tbuf = mmap(NULL, TEST_MEM_SIZE,\n\t\t PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);\n\tif (buf == (void *)-1) {\n\t\tfprintf(stderr, \"Unable to mmap \u003c%s\u003e\\n\", filename);\n\t\tgoto cleanup;\n\t}\n\n\tfprintf(stdout, \"mapped buffer at 0x%p\\n\", buf);\n\tret = madvise(buf, TEST_MEM_SIZE, MADV_HUGEPAGE);\n if (ret) {\n\t\tfprintf(stderr, \"Unable to madvise(MADV_HUGEPAGE)\\n\");\n\t\tgoto cleanup;\n\t}\n\n\t/* Populate VMA */\n\tret = madvise(buf, TEST_MEM_SIZE, MADV_POPULATE_WRITE);\n\tif (ret) {\n\t\tfprintf(stderr, \"Error %d to madvise(MADV_POPULATE_WRITE)\\n\", ret);\n\t\tgoto cleanup;\n\t}\n\n\t/* Punch the file to enforce xarray split */\n\tret = fallocate(fd, FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE,\n \t\tTEST_MEM_SIZE - pgsize, pgsize);\n\tif (ret)\n\t\tfprintf(stderr, \"Error %d to fallocate()\\n\", ret);\n\ncleanup:\n\tif (buf != (void *)-1)\n\t\tmunmap(buf, TEST_MEM_SIZE);\n\tif (fd \u003e 0)\n\t\tclose(fd);\n\n\treturn 0;\n}\n\n# gcc test.c -o test\n# cat /proc/1/smaps | grep KernelPageSize | head -n 1\nKernelPageSize: 64 kB\n# ./test shmem\n :\n------------[ cut here ]------------\nWARNING: CPU: 17 PID: 5253 at lib/xarray.c:1025 xas_split_alloc+0xf8/0x128\nModules linked in: nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib \\\nnft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct \\\nnft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 \\\nip_set nf_tables rfkill nfnetlink vfat fat virtio_balloon \\\ndrm fuse xfs libcrc32c crct10dif_ce ghash_ce sha2_ce sha256_arm64 \\\nvirtio_net sha1_ce net_failover failover virtio_console virtio_blk \\\ndimlib virtio_mmio\nCPU: 17 PID: 5253 Comm: test Kdump: loaded Tainted: G W 6.10.0-rc5-gavin+ #12\nHardware name: QEMU KVM Virtual Machine, BIOS edk2-20240524-1.el9 05/24/2024\npstate: 83400005 (Nzcv daif +PAN -UAO +TC\n---truncated---" } ], "providerMetadata": { "dateUpdated": "2024-11-05T09:38:55.947Z", "orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67", "shortName": "Linux" }, "references": [ { "url": "https://git.kernel.org/stable/c/a0c42ddd0969fdc760a85e20e267776028a7ca4e" }, { "url": "https://git.kernel.org/stable/c/333c5539a31f48828456aa9997ec2808f06a699a" }, { "url": "https://git.kernel.org/stable/c/099d90642a711caae377f53309abfe27e8724a8b" } ], "title": "mm/filemap: make MAX_PAGECACHE_ORDER acceptable to xarray", "x_generator": { "engine": "bippy-9e1c9544281a" } } }, "cveMetadata": { "assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67", "assignerShortName": "Linux", "cveId": "CVE-2024-42243", "datePublished": "2024-08-07T15:14:29.717Z", "dateReserved": "2024-07-30T07:40:12.254Z", "dateUpdated": "2024-11-05T09:38:55.947Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1", "meta": { "nvd": "{\"cve\":{\"id\":\"CVE-2024-42243\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2024-08-07T16:15:47.080\",\"lastModified\":\"2024-08-08T14:53:35.073\",\"vulnStatus\":\"Analyzed\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\nmm/filemap: make MAX_PAGECACHE_ORDER acceptable to xarray\\n\\nPatch series \\\"mm/filemap: Limit page cache size to that supported by\\nxarray\\\", v2.\\n\\nCurrently, xarray can\u0027t support arbitrary page cache size. More details\\ncan be found from the WARN_ON() statement in xas_split_alloc(). In our\\ntest whose code is attached below, we hit the WARN_ON() on ARM64 system\\nwhere the base page size is 64KB and huge page size is 512MB. The issue\\nwas reported long time ago and some discussions on it can be found here\\n[1].\\n\\n[1] https://www.spinics.net/lists/linux-xfs/msg75404.html\\n\\nIn order to fix the issue, we need to adjust MAX_PAGECACHE_ORDER to one\\nsupported by xarray and avoid PMD-sized page cache if needed. The code\\nchanges are suggested by David Hildenbrand.\\n\\nPATCH[1] adjusts MAX_PAGECACHE_ORDER to that supported by xarray\\nPATCH[2-3] avoids PMD-sized page cache in the synchronous readahead path\\nPATCH[4] avoids PMD-sized page cache for shmem files if needed\\n\\nTest program\\n============\\n# cat test.c\\n#define _GNU_SOURCE\\n#include \u003cstdio.h\u003e\\n#include \u003cstdlib.h\u003e\\n#include \u003cunistd.h\u003e\\n#include \u003cstring.h\u003e\\n#include \u003cfcntl.h\u003e\\n#include \u003cerrno.h\u003e\\n#include \u003csys/syscall.h\u003e\\n#include \u003csys/mman.h\u003e\\n\\n#define TEST_XFS_FILENAME\\t\\\"/tmp/data\\\"\\n#define TEST_SHMEM_FILENAME\\t\\\"/dev/shm/data\\\"\\n#define TEST_MEM_SIZE\\t\\t0x20000000\\n\\nint main(int argc, char **argv)\\n{\\n\\tconst char *filename;\\n\\tint fd = 0;\\n\\tvoid *buf = (void *)-1, *p;\\n\\tint pgsize = getpagesize();\\n\\tint ret;\\n\\n\\tif (pgsize != 0x10000) {\\n\\t\\tfprintf(stderr, \\\"64KB base page size is required\\\\n\\\");\\n\\t\\treturn -EPERM;\\n\\t}\\n\\n\\tsystem(\\\"echo force \u003e /sys/kernel/mm/transparent_hugepage/shmem_enabled\\\");\\n\\tsystem(\\\"rm -fr /tmp/data\\\");\\n\\tsystem(\\\"rm -fr /dev/shm/data\\\");\\n\\tsystem(\\\"echo 1 \u003e /proc/sys/vm/drop_caches\\\");\\n\\n\\t/* Open xfs or shmem file */\\n\\tfilename = TEST_XFS_FILENAME;\\n\\tif (argc \u003e 1 \u0026\u0026 !strcmp(argv[1], \\\"shmem\\\"))\\n\\t\\tfilename = TEST_SHMEM_FILENAME;\\n\\n\\tfd = open(filename, O_CREAT | O_RDWR | O_TRUNC);\\n\\tif (fd \u003c 0) {\\n\\t\\tfprintf(stderr, \\\"Unable to open \u003c%s\u003e\\\\n\\\", filename);\\n\\t\\treturn -EIO;\\n\\t}\\n\\n\\t/* Extend file size */\\n\\tret = ftruncate(fd, TEST_MEM_SIZE);\\n\\tif (ret) {\\n\\t\\tfprintf(stderr, \\\"Error %d to ftruncate()\\\\n\\\", ret);\\n\\t\\tgoto cleanup;\\n\\t}\\n\\n\\t/* Create VMA */\\n\\tbuf = mmap(NULL, TEST_MEM_SIZE,\\n\\t\\t PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);\\n\\tif (buf == (void *)-1) {\\n\\t\\tfprintf(stderr, \\\"Unable to mmap \u003c%s\u003e\\\\n\\\", filename);\\n\\t\\tgoto cleanup;\\n\\t}\\n\\n\\tfprintf(stdout, \\\"mapped buffer at 0x%p\\\\n\\\", buf);\\n\\tret = madvise(buf, TEST_MEM_SIZE, MADV_HUGEPAGE);\\n if (ret) {\\n\\t\\tfprintf(stderr, \\\"Unable to madvise(MADV_HUGEPAGE)\\\\n\\\");\\n\\t\\tgoto cleanup;\\n\\t}\\n\\n\\t/* Populate VMA */\\n\\tret = madvise(buf, TEST_MEM_SIZE, MADV_POPULATE_WRITE);\\n\\tif (ret) {\\n\\t\\tfprintf(stderr, \\\"Error %d to madvise(MADV_POPULATE_WRITE)\\\\n\\\", ret);\\n\\t\\tgoto cleanup;\\n\\t}\\n\\n\\t/* Punch the file to enforce xarray split */\\n\\tret = fallocate(fd, FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE,\\n \\t\\tTEST_MEM_SIZE - pgsize, pgsize);\\n\\tif (ret)\\n\\t\\tfprintf(stderr, \\\"Error %d to fallocate()\\\\n\\\", ret);\\n\\ncleanup:\\n\\tif (buf != (void *)-1)\\n\\t\\tmunmap(buf, TEST_MEM_SIZE);\\n\\tif (fd \u003e 0)\\n\\t\\tclose(fd);\\n\\n\\treturn 0;\\n}\\n\\n# gcc test.c -o test\\n# cat /proc/1/smaps | grep KernelPageSize | head -n 1\\nKernelPageSize: 64 kB\\n# ./test shmem\\n :\\n------------[ cut here ]------------\\nWARNING: CPU: 17 PID: 5253 at lib/xarray.c:1025 xas_split_alloc+0xf8/0x128\\nModules linked in: nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib \\\\\\nnft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct \\\\\\nnft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 \\\\\\nip_set nf_tables rfkill nfnetlink vfat fat virtio_balloon \\\\\\ndrm fuse xfs libcrc32c crct10dif_ce ghash_ce sha2_ce sha256_arm64 \\\\\\nvirtio_net sha1_ce net_failover failover virtio_console virtio_blk \\\\\\ndimlib virtio_mmio\\nCPU: 17 PID: 5253 Comm: test Kdump: loaded Tainted: G W 6.10.0-rc5-gavin+ #12\\nHardware name: QEMU KVM Virtual Machine, BIOS edk2-20240524-1.el9 05/24/2024\\npstate: 83400005 (Nzcv daif +PAN -UAO +TC\\n---truncated---\"},{\"lang\":\"es\",\"value\":\"En el kernel de Linux, se ha resuelto la siguiente vulnerabilidad: mm/filemap: hacer que MAX_PAGECACHE_ORDER sea aceptable para xarray Serie de parches \\\"mm/filemap: limitar el tama\u00f1o de cach\u00e9 de p\u00e1gina al admitido por xarray\\\", v2. Actualmente, xarray no puede admitir un tama\u00f1o de cach\u00e9 de p\u00e1gina arbitrario. Se pueden encontrar m\u00e1s detalles en la declaraci\u00f3n WARN_ON() en xas_split_alloc(). En nuestra prueba cuyo c\u00f3digo se adjunta a continuaci\u00f3n, presionamos WARN_ON() en el sistema ARM64 donde el tama\u00f1o de p\u00e1gina base es de 64 KB y el tama\u00f1o de p\u00e1gina enorme es de 512 MB. El problema se inform\u00f3 hace mucho tiempo y se pueden encontrar algunas discusiones al respecto aqu\u00ed [1]. [1] https://www.spinics.net/lists/linux-xfs/msg75404.html Para solucionar el problema, debemos ajustar MAX_PAGECACHE_ORDER a uno compatible con xarray y evitar el cach\u00e9 de p\u00e1ginas del tama\u00f1o de PMD si es necesario. Los cambios de c\u00f3digo los sugiere David Hildenbrand. PATCH[1] ajusta MAX_PAGECACHE_ORDER al soportado por xarray PATCH[2-3] evita el cach\u00e9 de p\u00e1ginas de tama\u00f1o PMD en la ruta de lectura anticipada sincr\u00f3nica PATCH[4] evita el cach\u00e9 de p\u00e1ginas de tama\u00f1o PMD para archivos shmem si es necesario Programa de prueba ===== ======= # cat test.c #define _GNU_SOURCE #incluye #incluye #incluye #incluye #incluye #include #include #include #define TEST_XFS_FILENAME \\\"/tmp/data\\\" #define TEST_SHMEM_FILENAME \\\"/dev/shm/data\\\" #define TEST_MEM_SIZE 0x20000000 int main(int argc, char **argv) { const char *nombre de archivo; intfd = 0; vac\u00edo *buf = (vac\u00edo *)-1, *p; int pgsize = getpagesize(); ret int; if (pgsize != 0x10000) { fprintf(stderr, \\\"se requiere un tama\u00f1o de p\u00e1gina base de 64 KB\\\\n\\\"); devolver -EPERM; } system(\\\"echo force \u0026gt; /sys/kernel/mm/transparent_hugepage/shmem_enabled\\\"); sistema(\\\"rm -fr /tmp/data\\\"); sistema(\\\"rm -fr /dev/shm/data\\\"); sistema(\\\"echo 1 \u0026gt; /proc/sys/vm/drop_caches\\\"); /* Abrir archivo xfs o shmem */ filename = TEST_XFS_FILENAME; if (argc \u0026gt; 1 \u0026amp;\u0026amp; !strcmp(argv[1], \\\"shmem\\\")) nombre de archivo = TEST_SHMEM_FILENAME; fd = open(nombre de archivo, O_CREAT | O_RDWR | O_TRUNC); if (fd \u0026lt; 0) { fprintf(stderr, \\\"No se puede abrir \u0026lt;%s\u0026gt;\\\\n\\\", nombre de archivo); devolver -EIO; } /* Ampliar tama\u00f1o de archivo */ ret = ftruncate(fd, TEST_MEM_SIZE); if (ret) { fprintf(stderr, \\\"Error %d al ftruncate()\\\\n\\\", ret); ir a limpieza; } /* Crear VMA */ buf = mmap(NULL, TEST_MEM_SIZE, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); if (buf == (void *)-1) { fprintf(stderr, \\\"No se puede mmap \u0026lt;%s\u0026gt;\\\\n\\\", nombre de archivo); ir a limpieza; } fprintf(stdout, \\\"b\u00fafer asignado en 0x%p\\\\n\\\", buf); ret = madvise(buf, TEST_MEM_SIZE, MADV_HUGEPAGE); if (ret) { fprintf(stderr, \\\"No se puede madvise(MADV_HUGEPAGE)\\\\n\\\"); ir a limpieza; } /* Completar VMA */ ret = madvise(buf, TEST_MEM_SIZE, MADV_POPULATE_WRITE); if (ret) { fprintf(stderr, \\\"Error %d en madvise(MADV_POPULATE_WRITE)\\\\n\\\", ret); ir a limpieza; } /* Perfora el archivo para aplicar la divisi\u00f3n xarray */ ret = fallocate(fd, FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE, TEST_MEM_SIZE - pgsize, pgsize); if (ret) fprintf(stderr, \\\"Error %d al fallacate()\\\\n\\\", ret); limpieza: if (buf != (void *)-1) munmap(buf, TEST_MEM_SIZE); si (fd \u0026gt; 0) cerrar(fd); devolver 0; } # gcc test.c -o prueba # cat /proc/1/smaps | grep Tama\u00f1o de p\u00e1gina de kernel | head -n 1 KernelPageSize: 64 kB # ./test shmem : ------------[ cortar aqu\u00ed ]------------ ADVERTENCIA: CPU: 17 PID: 5253 en lib/xarray.c:1025 xas_split_alloc+0xf8/0x128 M\u00f3dulos vinculados en: nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib \\\\ nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct \\\\ nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 \\\\ ip_set nf_tables rfkill nfnetlink vfat fat virtio_balloon \\\\ drm fuse xfs libcrc32c crct10dif_ce ghash_ce sha2_ce sha256_arm64 \\\\ virtio_net sha1_ce net_failover failover virtio_console virtio_blk \\\\ dimlib virtio_mmio CPU: 17 PID: 5253 Comm: prueba Kdump: cargado Contaminado: GW 6.10.0-rc5-gavin+ #12 ---truncado---\"}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H\",\"attackVector\":\"LOCAL\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"LOW\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"NONE\",\"integrityImpact\":\"NONE\",\"availabilityImpact\":\"HIGH\",\"baseScore\":5.5,\"baseSeverity\":\"MEDIUM\"},\"exploitabilityScore\":1.8,\"impactScore\":3.6}]},\"weaknesses\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"description\":[{\"lang\":\"en\",\"value\":\"NVD-CWE-noinfo\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"5.18\",\"versionEndExcluding\":\"6.6.41\",\"matchCriteriaId\":\"CB8B6FE0-8AA9-42BD-BCE9-F8A593A9F032\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.7\",\"versionEndExcluding\":\"6.9.10\",\"matchCriteriaId\":\"AB2E8DEC-CFD5-4C2B-981D-E7E45A36C352\"}]}]}],\"references\":[{\"url\":\"https://git.kernel.org/stable/c/099d90642a711caae377f53309abfe27e8724a8b\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/333c5539a31f48828456aa9997ec2808f06a699a\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/a0c42ddd0969fdc760a85e20e267776028a7ca4e\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]}]}}" } }
rhsa-2024_6745
Vulnerability from csaf_redhat
Notes
{ "document": { "aggregate_severity": { "namespace": "https://access.redhat.com/security/updates/classification/", "text": "Moderate" }, "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-rt is now available for Red Hat Enterprise Linux 9.2 Extended Update Support.\n\nRed Hat Product Security has rated this update as having a security impact of Moderate. 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-rt packages provide the Real Time Linux Kernel, which enables fine-tuning for systems with extremely high determinism requirements.\n\nSecurity Fix(es):\n\n* kernel: Bluetooth: af_bluetooth: Fix deadlock (CVE-2024-26886)\n\n* kernel: crypto: qat - resolve race condition during AER recovery (CVE-2024-26974)\n\n* kernel: tty: n_gsm: require CAP_NET_ADMIN to attach N_GSM0710 ldisc (CVE-2023-52880)\n\n* kernel: cpufreq: exit() callback is optional (CVE-2024-38615)\n\n* kernel: cppc_cpufreq: Fix possible null pointer dereference (CVE-2024-38573)\n\n* kernel: scsi: qedf: Ensure the copied buf is NUL terminated (CVE-2024-38559)\n\n* kernel: ACPICA: Revert \u0026#34;ACPICA: avoid Info: mapping multiple BARs. Your kernel is fine.\u0026#34; (CVE-2024-40984)\n\n* kernel: sched/deadline: Fix task_struct reference leak (CVE-2024-41023)\n\n* kernel: mm/filemap: skip to create PMD-sized page cache if needed (CVE-2024-41031)\n\n* kernel: mm/shmem: disable PMD-sized page cache if needed (CVE-2024-42241)\n\n* kernel: mm/filemap: make MAX_PAGECACHE_ORDER acceptable to xarray (CVE-2024-42243)\n\n* kernel: net, sunrpc: Remap EPERM in case of connection failure in xs_tcp_setup_socket (CVE-2024-42246)\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-2024:6745", "url": "https://access.redhat.com/errata/RHSA-2024:6745" }, { "category": "external", "summary": "https://access.redhat.com/security/updates/classification/#moderate", "url": "https://access.redhat.com/security/updates/classification/#moderate" }, { "category": "external", "summary": "2275678", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2275678" }, { "category": "external", "summary": "2278354", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2278354" }, { "category": "external", "summary": "2283468", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2283468" }, { "category": "external", "summary": "2293348", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2293348" }, { "category": "external", "summary": "2293420", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2293420" }, { "category": "external", "summary": "2293440", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2293440" }, { "category": "external", "summary": "2297568", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2297568" }, { "category": "external", "summary": "2300381", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2300381" }, { "category": "external", "summary": "2300395", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2300395" }, { "category": "self", "summary": "Canonical URL", "url": "https://security.access.redhat.com/data/csaf/v2/advisories/2024/rhsa-2024_6745.json" } ], "title": "Red Hat Security Advisory: kernel-rt security update", "tracking": { "current_release_date": "2024-11-06T06:58:27+00:00", "generator": { "date": "2024-11-06T06:58:27+00:00", "engine": { "name": "Red Hat SDEngine", "version": "4.1.1" } }, "id": "RHSA-2024:6745", "initial_release_date": "2024-09-18T00:09:28+00:00", "revision_history": [ { "date": "2024-09-18T00:09:28+00:00", "number": "1", "summary": "Initial version" }, { "date": "2024-09-18T00:09:28+00:00", "number": "2", "summary": "Last updated version" }, { "date": "2024-11-06T06:58:27+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 Real Time EUS (v.9.2)", "product": { "name": "Red Hat Enterprise Linux Real Time EUS (v.9.2)", "product_id": "RT-9.2.0.Z.EUS", "product_identification_helper": { "cpe": "cpe:/a:redhat:rhel_eus:9.2::realtime" } } }, { "category": "product_name", "name": "Red Hat Enterprise Linux Real Time for NFV EUS (v.9.2)", "product": { "name": "Red Hat Enterprise Linux Real Time for NFV EUS (v.9.2)", "product_id": "NFV-9.2.0.Z.EUS", "product_identification_helper": { "cpe": "cpe:/a:redhat:rhel_eus:9.2::nfv" } } } ], "category": "product_family", "name": "Red Hat Enterprise Linux" }, { "branches": [ { "category": "product_version", "name": "kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "product": { "name": "kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "product_id": "kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt@5.14.0-284.84.1.rt14.369.el9_2?arch=src" } } } ], "category": "architecture", "name": "src" }, { "branches": [ { "category": "product_version", "name": "kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product": { "name": "kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_id": "kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt@5.14.0-284.84.1.rt14.369.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product": { "name": "kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_id": "kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-core@5.14.0-284.84.1.rt14.369.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product": { "name": "kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_id": "kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-debug@5.14.0-284.84.1.rt14.369.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product": { "name": "kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_id": "kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-debug-core@5.14.0-284.84.1.rt14.369.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product": { "name": "kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_id": "kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-debug-devel@5.14.0-284.84.1.rt14.369.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product": { "name": "kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_id": "kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-debug-kvm@5.14.0-284.84.1.rt14.369.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product": { "name": "kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_id": "kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-debug-modules@5.14.0-284.84.1.rt14.369.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product": { "name": "kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_id": "kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-debug-modules-core@5.14.0-284.84.1.rt14.369.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product": { "name": "kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_id": "kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-debug-modules-extra@5.14.0-284.84.1.rt14.369.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product": { "name": "kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_id": "kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-devel@5.14.0-284.84.1.rt14.369.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product": { "name": "kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_id": "kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-kvm@5.14.0-284.84.1.rt14.369.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product": { "name": "kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_id": "kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-modules@5.14.0-284.84.1.rt14.369.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product": { "name": "kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_id": "kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-modules-core@5.14.0-284.84.1.rt14.369.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product": { "name": "kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_id": "kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-modules-extra@5.14.0-284.84.1.rt14.369.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product": { "name": "kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_id": "kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@5.14.0-284.84.1.rt14.369.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product": { "name": "kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_id": "kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-debuginfo@5.14.0-284.84.1.rt14.369.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product": { "name": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_id": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-debuginfo-common-x86_64@5.14.0-284.84.1.rt14.369.el9_2?arch=x86_64" } } } ], "category": "architecture", "name": "x86_64" } ], "category": "vendor", "name": "Red Hat" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.2)", "product_id": "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src" }, "product_reference": "kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "relates_to_product_reference": "NFV-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.2)", "product_id": "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "NFV-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.2)", "product_id": "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "NFV-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.2)", "product_id": "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "NFV-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.2)", "product_id": "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "NFV-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.2)", "product_id": "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "NFV-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.2)", "product_id": "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "NFV-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.2)", "product_id": "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "NFV-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.2)", "product_id": "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "NFV-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.2)", "product_id": "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "NFV-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.2)", "product_id": "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "NFV-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.2)", "product_id": "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "NFV-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.2)", "product_id": "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "NFV-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.2)", "product_id": "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "NFV-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.2)", "product_id": "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "NFV-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.2)", "product_id": "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "NFV-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.2)", "product_id": "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "NFV-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.2)", "product_id": "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "NFV-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src as a component of Red Hat Enterprise Linux Real Time EUS (v.9.2)", "product_id": "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src" }, "product_reference": "kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "relates_to_product_reference": "RT-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.2)", "product_id": "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "RT-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.2)", "product_id": "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "RT-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.2)", "product_id": "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "RT-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.2)", "product_id": "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "RT-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.2)", "product_id": "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "RT-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.2)", "product_id": "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "RT-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.2)", "product_id": "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "RT-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.2)", "product_id": "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "RT-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.2)", "product_id": "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "RT-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.2)", "product_id": "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "RT-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.2)", "product_id": "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "RT-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.2)", "product_id": "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "RT-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.2)", "product_id": "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "RT-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.2)", "product_id": "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "RT-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.2)", "product_id": "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "RT-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.2)", "product_id": "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "RT-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.2)", "product_id": "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" }, "product_reference": "kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "relates_to_product_reference": "RT-9.2.0.Z.EUS" } ] }, "vulnerabilities": [ { "cve": "CVE-2023-52880", "cwe": { "id": "CWE-99", "name": "Improper Control of Resource Identifiers (\u0027Resource Injection\u0027)" }, "discovery_date": "2024-05-24T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2283468" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\ntty: n_gsm: require CAP_NET_ADMIN to attach N_GSM0710 ldisc\n\nAny unprivileged user can attach N_GSM0710 ldisc, but it requires\nCAP_NET_ADMIN to create a GSM network anyway.\n\nRequire initial namespace CAP_NET_ADMIN to do that.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: tty: n_gsm: require CAP_NET_ADMIN to attach N_GSM0710 ldisc", "title": "Vulnerability summary" }, { "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": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2023-52880" }, { "category": "external", "summary": "RHBZ#2283468", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2283468" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2023-52880", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52880" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-52880", "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-52880" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024052422-CVE-2023-52880-d2ff@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024052422-CVE-2023-52880-d2ff@gregkh/T" } ], "release_date": "2024-05-24T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-18T00:09:28+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": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:6745" } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Low" } ], "title": "kernel: tty: n_gsm: require CAP_NET_ADMIN to attach N_GSM0710 ldisc" }, { "cve": "CVE-2024-26886", "cwe": { "id": "CWE-833", "name": "Deadlock" }, "discovery_date": "2024-04-17T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2275678" } ], "notes": [ { "category": "description", "text": "A flaw was found in the Linux kernel\u2019s Bluetooth subsystem, specifically within the af_bluetooth module. The issue arises when attempting to perform a sock_lock on the .recvmsg method, leading to a deadlock situation. In this scenario, multiple tasks wait indefinitely for a resource, causing significant performance degradation or system crashes.\nThe vulnerability occurs during Bluetooth operations, where tasks are blocked for more than 30 seconds, creating potential instability. The solution was to replace the sock_sock lock with the sk_receive_queue.lock in the bt_sock_ioctl function to prevent a use-after-free (UAF) condition and avoid the deadlock.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: Bluetooth: af_bluetooth: Fix deadlock", "title": "Vulnerability summary" }, { "category": "other", "text": "This flaw has been rated as having a Moderate impact because it is believed to be difficult to exploit and cannot be used to achieve local privilege escalation.", "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": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-26886" }, { "category": "external", "summary": "RHBZ#2275678", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2275678" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-26886", "url": "https://www.cve.org/CVERecord?id=CVE-2024-26886" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-26886", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-26886" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024041742-CVE-2024-26886-6345@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024041742-CVE-2024-26886-6345@gregkh/T" } ], "release_date": "2024-04-17T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-18T00:09:28+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": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:6745" } ], "scores": [ { "cvss_v3": { "attackComplexity": "HIGH", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "baseScore": 5.3, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: Bluetooth: af_bluetooth: Fix deadlock" }, { "cve": "CVE-2024-26974", "discovery_date": "2024-05-01T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2278354" } ], "notes": [ { "category": "description", "text": "A race condition was found in drivers/crypto/intel/qat/qat_common/adf_aer.c in the Linux kernel during AER recovery.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: crypto: qat - resolve race condition during AER recovery", "title": "Vulnerability summary" }, { "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": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-26974" }, { "category": "external", "summary": "RHBZ#2278354", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2278354" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-26974", "url": "https://www.cve.org/CVERecord?id=CVE-2024-26974" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-26974", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-26974" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024050132-CVE-2024-26974-13eb@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024050132-CVE-2024-26974-13eb@gregkh/T" } ], "release_date": "2024-05-01T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-18T00:09:28+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": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:6745" } ], "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": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: crypto: qat - resolve race condition during AER recovery" }, { "cve": "CVE-2024-38559", "cwe": { "id": "CWE-125", "name": "Out-of-bounds Read" }, "discovery_date": "2024-06-19T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2293440" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nscsi: qedf: Ensure the copied buf is NUL terminated\n\nCurrently, we allocate a count-sized kernel buffer and copy count from\nuserspace to that buffer. Later, we use kstrtouint on this buffer but we\ndon\u0027t ensure that the string is terminated inside the buffer, this can\nlead to OOB read when using kstrtouint. Fix this issue by using\nmemdup_user_nul instead of memdup_user.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: scsi: qedf: Ensure the copied buf is NUL terminated", "title": "Vulnerability summary" }, { "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": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-38559" }, { "category": "external", "summary": "RHBZ#2293440", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2293440" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-38559", "url": "https://www.cve.org/CVERecord?id=CVE-2024-38559" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-38559", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-38559" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024061953-CVE-2024-38559-3e03@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024061953-CVE-2024-38559-3e03@gregkh/T" } ], "release_date": "2024-06-19T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-18T00:09:28+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": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:6745" } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 4.4, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "HIGH", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Low" } ], "title": "kernel: scsi: qedf: Ensure the copied buf is NUL terminated" }, { "cve": "CVE-2024-38573", "discovery_date": "2024-06-19T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2293420" } ], "notes": [ { "category": "description", "text": "A NULL pointer dereference flaw was found in cppc_cpufreq_get_rate() in the Linux kernel. This issue may result in a crash.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: cppc_cpufreq: Fix possible null pointer dereference", "title": "Vulnerability summary" }, { "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": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-38573" }, { "category": "external", "summary": "RHBZ#2293420", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2293420" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-38573", "url": "https://www.cve.org/CVERecord?id=CVE-2024-38573" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-38573", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-38573" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024061957-CVE-2024-38573-d4b6@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024061957-CVE-2024-38573-d4b6@gregkh/T" } ], "release_date": "2024-06-19T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-18T00:09:28+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": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:6745" } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Low" } ], "title": "kernel: cppc_cpufreq: Fix possible null pointer dereference" }, { "cve": "CVE-2024-38615", "cwe": { "id": "CWE-459", "name": "Incomplete Cleanup" }, "discovery_date": "2024-06-19T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2293348" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\ncpufreq: exit() callback is optional\n\nThe exit() callback is optional and shouldn\u0027t be called without checking\na valid pointer first.\n\nAlso, we must clear freq_table pointer even if the exit() callback isn\u0027t\npresent.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: cpufreq: exit() callback is optional", "title": "Vulnerability summary" }, { "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": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-38615" }, { "category": "external", "summary": "RHBZ#2293348", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2293348" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-38615", "url": "https://www.cve.org/CVERecord?id=CVE-2024-38615" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-38615", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-38615" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024061922-CVE-2024-38615-0d4c@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024061922-CVE-2024-38615-0d4c@gregkh/T" } ], "release_date": "2024-06-19T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-18T00:09:28+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": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:6745" } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 4.4, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "HIGH", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Low" } ], "title": "kernel: cpufreq: exit() callback is optional" }, { "cve": "CVE-2024-40984", "cwe": { "id": "CWE-476", "name": "NULL Pointer Dereference" }, "discovery_date": "2024-07-12T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2297568" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nACPICA: Revert \"ACPICA: avoid Info: mapping multiple BARs. Your kernel is fine.\"\n\nUndo the modifications made in commit d410ee5109a1 (\"ACPICA: avoid\n\"Info: mapping multiple BARs. Your kernel is fine.\"\"). The initial\npurpose of this commit was to stop memory mappings for operation\nregions from overlapping page boundaries, as it can trigger warnings\nif different page attributes are present.\n\nHowever, it was found that when this situation arises, mapping\ncontinues until the boundary\u0027s end, but there is still an attempt to\nread/write the entire length of the map, leading to a NULL pointer\ndeference. For example, if a four-byte mapping request is made but\nonly one byte is mapped because it hits the current page boundary\u0027s\nend, a four-byte read/write attempt is still made, resulting in a NULL\npointer deference.\n\nInstead, map the entire length, as the ACPI specification does not\nmandate that it must be within the same page boundary. It is\npermissible for it to be mapped across different regions.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: ACPICA: Revert \u0026#34;ACPICA: avoid Info: mapping multiple BARs. Your kernel is fine.\u0026#34;", "title": "Vulnerability summary" }, { "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": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-40984" }, { "category": "external", "summary": "RHBZ#2297568", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2297568" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-40984", "url": "https://www.cve.org/CVERecord?id=CVE-2024-40984" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-40984", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-40984" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024071201-CVE-2024-40984-66b2@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024071201-CVE-2024-40984-66b2@gregkh/T" } ], "release_date": "2024-07-12T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-18T00:09:28+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": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:6745" }, { "category": "workaround", "details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.", "product_ids": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: ACPICA: Revert \u0026#34;ACPICA: avoid Info: mapping multiple BARs. Your kernel is fine.\u0026#34;" }, { "cve": "CVE-2024-41023", "cwe": { "id": "CWE-401", "name": "Missing Release of Memory after Effective Lifetime" }, "discovery_date": "2024-07-29T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2300381" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nsched/deadline: Fix task_struct reference leak\n\nDuring the execution of the following stress test with linux-rt:\n\nstress-ng --cyclic 30 --timeout 30 --minimize --quiet\n\nkmemleak frequently reported a memory leak concerning the task_struct:\n\nunreferenced object 0xffff8881305b8000 (size 16136):\n comm \"stress-ng\", pid 614, jiffies 4294883961 (age 286.412s)\n object hex dump (first 32 bytes):\n 02 40 00 00 00 00 00 00 00 00 00 00 00 00 00 00 .@..............\n 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................\n debug hex dump (first 16 bytes):\n 53 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 S...............\n backtrace:\n [\u003c00000000046b6790\u003e] dup_task_struct+0x30/0x540\n [\u003c00000000c5ca0f0b\u003e] copy_process+0x3d9/0x50e0\n [\u003c00000000ced59777\u003e] kernel_clone+0xb0/0x770\n [\u003c00000000a50befdc\u003e] __do_sys_clone+0xb6/0xf0\n [\u003c000000001dbf2008\u003e] do_syscall_64+0x5d/0xf0\n [\u003c00000000552900ff\u003e] entry_SYSCALL_64_after_hwframe+0x6e/0x76\n\nThe issue occurs in start_dl_timer(), which increments the task_struct\nreference count and sets a timer. The timer callback, dl_task_timer,\nis supposed to decrement the reference count upon expiration. However,\nif enqueue_task_dl() is called before the timer expires and cancels it,\nthe reference count is not decremented, leading to the leak.\n\nThis patch fixes the reference leak by ensuring the task_struct\nreference count is properly decremented when the timer is canceled.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: sched/deadline: Fix task_struct reference leak", "title": "Vulnerability summary" }, { "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": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-41023" }, { "category": "external", "summary": "RHBZ#2300381", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2300381" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-41023", "url": "https://www.cve.org/CVERecord?id=CVE-2024-41023" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-41023", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-41023" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024072917-CVE-2024-41023-32a0@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024072917-CVE-2024-41023-32a0@gregkh/T" } ], "release_date": "2024-07-29T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-18T00:09:28+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": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:6745" }, { "category": "workaround", "details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.", "product_ids": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 6.1, "baseSeverity": "MEDIUM", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:H", "version": "3.1" }, "products": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: sched/deadline: Fix task_struct reference leak" }, { "cve": "CVE-2024-41031", "cwe": { "id": "CWE-99", "name": "Improper Control of Resource Identifiers (\u0027Resource Injection\u0027)" }, "discovery_date": "2024-07-29T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2300395" } ], "notes": [ { "category": "description", "text": "A vulnerability was found in the Linux kernel related to how large page caching is handled, particularly for AMD64 architectures. The issue stems from the xarray data structure\u0027s inability to support PMD-sized page caches when the base page size is larger than MAX_PAGECACHE_ORDER. The particular configuration on ARM64 architectures can potentially lead to untenable resource allocation and system crashes when large pages are manipulated.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: mm/filemap: skip to create PMD-sized page cache if needed", "title": "Vulnerability summary" }, { "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": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-41031" }, { "category": "external", "summary": "RHBZ#2300395", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2300395" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-41031", "url": "https://www.cve.org/CVERecord?id=CVE-2024-41031" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-41031", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-41031" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024072921-CVE-2024-41031-6286@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024072921-CVE-2024-41031-6286@gregkh/T" } ], "release_date": "2024-07-29T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-18T00:09:28+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": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:6745" }, { "category": "workaround", "details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.", "product_ids": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: mm/filemap: skip to create PMD-sized page cache if needed" }, { "cve": "CVE-2024-42241", "cwe": { "id": "CWE-99", "name": "Improper Control of Resource Identifiers (\u0027Resource Injection\u0027)" }, "discovery_date": "2024-08-07T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2303509" } ], "notes": [ { "category": "description", "text": "A denial of service vulnerability was found in the Linux Kernel. In architectures such as ARM64 where the base page size is 64KB, a 512MB page cache could lead to a software crash.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: mm/shmem: disable PMD-sized page cache if needed", "title": "Vulnerability summary" }, { "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": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-42241" }, { "category": "external", "summary": "RHBZ#2303509", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2303509" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-42241", "url": "https://www.cve.org/CVERecord?id=CVE-2024-42241" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-42241", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-42241" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024080741-CVE-2024-42241-baee@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024080741-CVE-2024-42241-baee@gregkh/T" } ], "release_date": "2024-08-07T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-18T00:09:28+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": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:6745" } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: mm/shmem: disable PMD-sized page cache if needed" }, { "cve": "CVE-2024-42243", "cwe": { "id": "CWE-20", "name": "Improper Input Validation" }, "discovery_date": "2024-08-07T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2303511" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nmm/filemap: make MAX_PAGECACHE_ORDER acceptable to xarray\n\nPatch series \"mm/filemap: Limit page cache size to that supported by\nxarray\", v2.\n\nCurrently, xarray can\u0027t support arbitrary page cache size. More details\ncan be found from the WARN_ON() statement in xas_split_alloc(). In our\ntest whose code is attached below, we hit the WARN_ON() on ARM64 system\nwhere the base page size is 64KB and huge page size is 512MB. The issue\nwas reported long time ago and some discussions on it can be found here\n[1].\n\n[1] https://www.spinics.net/lists/linux-xfs/msg75404.html\n\nIn order to fix the issue, we need to adjust MAX_PAGECACHE_ORDER to one\nsupported by xarray and avoid PMD-sized page cache if needed. The code\nchanges are suggested by David Hildenbrand.\n\nPATCH[1] adjusts MAX_PAGECACHE_ORDER to that supported by xarray\nPATCH[2-3] avoids PMD-sized page cache in the synchronous readahead path\nPATCH[4] avoids PMD-sized page cache for shmem files if needed\n\nTest program\n============\n# cat test.c\n#define _GNU_SOURCE\n#include \u003cstdio.h\u003e\n#include \u003cstdlib.h\u003e\n#include \u003cunistd.h\u003e\n#include \u003cstring.h\u003e\n#include \u003cfcntl.h\u003e\n#include \u003cerrno.h\u003e\n#include \u003csys/syscall.h\u003e\n#include \u003csys/mman.h\u003e\n\n#define TEST_XFS_FILENAME\t\"/tmp/data\"\n#define TEST_SHMEM_FILENAME\t\"/dev/shm/data\"\n#define TEST_MEM_SIZE\t\t0x20000000\n\nint main(int argc, char **argv)\n{\n\tconst char *filename;\n\tint fd = 0;\n\tvoid *buf = (void *)-1, *p;\n\tint pgsize = getpagesize();\n\tint ret;\n\n\tif (pgsize != 0x10000) {\n\t\tfprintf(stderr, \"64KB base page size is required\\n\");\n\t\treturn -EPERM;\n\t}\n\n\tsystem(\"echo force \u003e /sys/kernel/mm/transparent_hugepage/shmem_enabled\");\n\tsystem(\"rm -fr /tmp/data\");\n\tsystem(\"rm -fr /dev/shm/data\");\n\tsystem(\"echo 1 \u003e /proc/sys/vm/drop_caches\");\n\n\t/* Open xfs or shmem file */\n\tfilename = TEST_XFS_FILENAME;\n\tif (argc \u003e 1 \u0026\u0026 !strcmp(argv[1], \"shmem\"))\n\t\tfilename = TEST_SHMEM_FILENAME;\n\n\tfd = open(filename, O_CREAT | O_RDWR | O_TRUNC);\n\tif (fd \u003c 0) {\n\t\tfprintf(stderr, \"Unable to open \u003c%s\u003e\\n\", filename);\n\t\treturn -EIO;\n\t}\n\n\t/* Extend file size */\n\tret = ftruncate(fd, TEST_MEM_SIZE);\n\tif (ret) {\n\t\tfprintf(stderr, \"Error %d to ftruncate()\\n\", ret);\n\t\tgoto cleanup;\n\t}\n\n\t/* Create VMA */\n\tbuf = mmap(NULL, TEST_MEM_SIZE,\n\t\t PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);\n\tif (buf == (void *)-1) {\n\t\tfprintf(stderr, \"Unable to mmap \u003c%s\u003e\\n\", filename);\n\t\tgoto cleanup;\n\t}\n\n\tfprintf(stdout, \"mapped buffer at 0x%p\\n\", buf);\n\tret = madvise(buf, TEST_MEM_SIZE, MADV_HUGEPAGE);\n if (ret) {\n\t\tfprintf(stderr, \"Unable to madvise(MADV_HUGEPAGE)\\n\");\n\t\tgoto cleanup;\n\t}\n\n\t/* Populate VMA */\n\tret = madvise(buf, TEST_MEM_SIZE, MADV_POPULATE_WRITE);\n\tif (ret) {\n\t\tfprintf(stderr, \"Error %d to madvise(MADV_POPULATE_WRITE)\\n\", ret);\n\t\tgoto cleanup;\n\t}\n\n\t/* Punch the file to enforce xarray split */\n\tret = fallocate(fd, FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE,\n \t\tTEST_MEM_SIZE - pgsize, pgsize);\n\tif (ret)\n\t\tfprintf(stderr, \"Error %d to fallocate()\\n\", ret);\n\ncleanup:\n\tif (buf != (void *)-1)\n\t\tmunmap(buf, TEST_MEM_SIZE);\n\tif (fd \u003e 0)\n\t\tclose(fd);\n\n\treturn 0;\n}\n\n# gcc test.c -o test\n# cat /proc/1/smaps | grep KernelPageSize | head -n 1\nKernelPageSize: 64 kB\n# ./test shmem\n :\n------------[ cut here ]------------\nWARNING: CPU: 17 PID: 5253 at lib/xarray.c:1025 xas_split_alloc+0xf8/0x128\nModules linked in: nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib \\\nnft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct \\\nnft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 \\\nip_set nf_tables rfkill nfnetlink vfat fat virtio_balloon \\\ndrm fuse xfs libcrc32c crct10dif_ce ghash_ce sha2_ce sha256_arm64 \\\nvirtio_net sha1_ce net_failover failover virtio_console virtio_blk \\\ndimlib virtio_mmio\nCPU: 17 PID: 5253 Comm: test Kdump: loaded Tainted: G W 6.10.0-rc5-gavin+ #12\nHardware name: QEMU KVM Virtual Machine, BIOS edk2-20240524-1.el9 05/24/2024\npstate: 83400005 (Nzcv daif +PAN -UAO +TC\n---truncated---", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: mm/filemap: make MAX_PAGECACHE_ORDER acceptable to xarray", "title": "Vulnerability summary" }, { "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": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-42243" }, { "category": "external", "summary": "RHBZ#2303511", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2303511" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-42243", "url": "https://www.cve.org/CVERecord?id=CVE-2024-42243" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-42243", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-42243" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024080741-CVE-2024-42243-2ed5@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024080741-CVE-2024-42243-2ed5@gregkh/T" } ], "release_date": "2024-08-07T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-18T00:09:28+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": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:6745" } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Low" } ], "title": "kernel: mm/filemap: make MAX_PAGECACHE_ORDER acceptable to xarray" }, { "cve": "CVE-2024-42246", "cwe": { "id": "CWE-835", "name": "Loop with Unreachable Exit Condition (\u0027Infinite Loop\u0027)" }, "discovery_date": "2024-08-07T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2303514" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nnet, sunrpc: Remap EPERM in case of connection failure in xs_tcp_setup_socket\n\nWhen using a BPF program on kernel_connect(), the call can return -EPERM. This\ncauses xs_tcp_setup_socket() to loop forever, filling up the syslog and causing\nthe kernel to potentially freeze up.\n\nNeil suggested:\n\n This will propagate -EPERM up into other layers which might not be ready\n to handle it. It might be safer to map EPERM to an error we would be more\n likely to expect from the network system - such as ECONNREFUSED or ENETDOWN.\n\nECONNREFUSED as error seems reasonable. For programs setting a different error\ncan be out of reach (see handling in 4fbac77d2d09) in particular on kernels\nwhich do not have f10d05966196 (\"bpf: Make BPF_PROG_RUN_ARRAY return -err\ninstead of allow boolean\"), thus given that it is better to simply remap for\nconsistent behavior. UDP does handle EPERM in xs_udp_send_request().", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: net, sunrpc: Remap EPERM in case of connection failure in xs_tcp_setup_socket", "title": "Vulnerability summary" }, { "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": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-42246" }, { "category": "external", "summary": "RHBZ#2303514", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2303514" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-42246", "url": "https://www.cve.org/CVERecord?id=CVE-2024-42246" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-42246", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-42246" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024080742-CVE-2024-42246-0777@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024080742-CVE-2024-42246-0777@gregkh/T" } ], "release_date": "2024-08-07T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-18T00:09:28+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": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:6745" } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "NFV-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "NFV-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.src", "RT-9.2.0.Z.EUS:kernel-rt-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-devel-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-kvm-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64", "RT-9.2.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-284.84.1.rt14.369.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: net, sunrpc: Remap EPERM in case of connection failure in xs_tcp_setup_socket" } ] }
rhsa-2024_6744
Vulnerability from csaf_redhat
Notes
{ "document": { "aggregate_severity": { "namespace": "https://access.redhat.com/security/updates/classification/", "text": "Moderate" }, "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.2 Extended Update Support.\n\nRed Hat Product Security has rated this update as having a security impact of Moderate. 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: Bluetooth: af_bluetooth: Fix deadlock (CVE-2024-26886)\n\n* kernel: crypto: qat - resolve race condition during AER recovery (CVE-2024-26974)\n\n* kernel: tty: n_gsm: require CAP_NET_ADMIN to attach N_GSM0710 ldisc (CVE-2023-52880)\n\n* kernel: cpufreq: exit() callback is optional (CVE-2024-38615)\n\n* kernel: cppc_cpufreq: Fix possible null pointer dereference (CVE-2024-38573)\n\n* kernel: scsi: qedf: Ensure the copied buf is NUL terminated (CVE-2024-38559)\n\n* kernel: ACPICA: Revert \u0026#34;ACPICA: avoid Info: mapping multiple BARs. Your kernel is fine.\u0026#34; (CVE-2024-40984)\n\n* kernel: sched/deadline: Fix task_struct reference leak (CVE-2024-41023)\n\n* kernel: mm/filemap: skip to create PMD-sized page cache if needed (CVE-2024-41031)\n\n* kernel: mm/shmem: disable PMD-sized page cache if needed (CVE-2024-42241)\n\n* kernel: mm/filemap: make MAX_PAGECACHE_ORDER acceptable to xarray (CVE-2024-42243)\n\n* kernel: net, sunrpc: Remap EPERM in case of connection failure in xs_tcp_setup_socket (CVE-2024-42246)\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-2024:6744", "url": "https://access.redhat.com/errata/RHSA-2024:6744" }, { "category": "external", "summary": "https://access.redhat.com/security/updates/classification/#moderate", "url": "https://access.redhat.com/security/updates/classification/#moderate" }, { "category": "external", "summary": "2275678", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2275678" }, { "category": "external", "summary": "2278354", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2278354" }, { "category": "external", "summary": "2283468", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2283468" }, { "category": "external", "summary": "2293348", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2293348" }, { "category": "external", "summary": "2293420", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2293420" }, { "category": "external", "summary": "2293440", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2293440" }, { "category": "external", "summary": "2297568", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2297568" }, { "category": "external", "summary": "2300381", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2300381" }, { "category": "external", "summary": "2300395", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2300395" }, { "category": "self", "summary": "Canonical URL", "url": "https://security.access.redhat.com/data/csaf/v2/advisories/2024/rhsa-2024_6744.json" } ], "title": "Red Hat Security Advisory: kernel security update", "tracking": { "current_release_date": "2024-11-06T06:58:15+00:00", "generator": { "date": "2024-11-06T06:58:15+00:00", "engine": { "name": "Red Hat SDEngine", "version": "4.1.1" } }, "id": "RHSA-2024:6744", "initial_release_date": "2024-09-18T00:24:13+00:00", "revision_history": [ { "date": "2024-09-18T00:24:13+00:00", "number": "1", "summary": "Initial version" }, { "date": "2024-09-18T00:24:13+00:00", "number": "2", "summary": "Last updated version" }, { "date": "2024-11-06T06:58:15+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 EUS (v.9.2)", "product": { "name": "Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS", "product_identification_helper": { "cpe": "cpe:/a:redhat:rhel_eus:9.2::appstream" } } }, { "category": "product_name", "name": "Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product": { "name": "Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS", "product_identification_helper": { "cpe": "cpe:/o:redhat:rhel_eus:9.2::baseos" } } }, { "category": "product_name", "name": "Red Hat CodeReady Linux Builder EUS (v.9.2)", "product": { "name": "Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS", "product_identification_helper": { "cpe": "cpe:/a:redhat:rhel_eus:9.2::crb" } } } ], "category": "product_family", "name": "Red Hat Enterprise Linux" }, { "branches": [ { "category": "product_version", "name": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-cross-headers@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "product": { "name": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "product_id": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool-debuginfo@7.0.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-debug-debuginfo@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-debuginfo@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo-common-aarch64@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-debug-devel@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-debug-devel-matched@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-devel@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-devel-matched@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "perf-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "perf-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "perf-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "rtla-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "rtla-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "rtla-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rtla@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "product": { "name": "bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "product_id": "bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool@7.0.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-core@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-debug@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-debug-core@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-debug-modules@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-debug-modules-core@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-debug-modules-extra@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-modules@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-modules-core@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-modules-extra@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-core@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-284.84.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "product": { "name": "python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "product_id": "python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf@5.14.0-284.84.1.el9_2?arch=aarch64" } } } ], "category": "architecture", "name": "aarch64" }, { "branches": [ { "category": "product_version", "name": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-cross-headers@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "product": { "name": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "product_id": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool-debuginfo@7.0.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo-common-ppc64le@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "perf-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "perf-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "perf-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/rtla@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "product": { "name": "bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "product_id": "bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool@7.0.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-core@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-284.84.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "product": { "name": "python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "product_id": "python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf@5.14.0-284.84.1.el9_2?arch=ppc64le" } } } ], "category": "architecture", "name": "ppc64le" }, { "branches": [ { "category": "product_version", "name": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-cross-headers@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "product": { "name": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "product_id": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool-debuginfo@7.0.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "perf-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "perf-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "perf-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "rtla-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "rtla-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "rtla-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rtla@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "product": { "name": "bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "product_id": "bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool@7.0.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "kernel-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "kernel-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-core@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-uki-virt@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-uki-virt@5.14.0-284.84.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "product": { "name": "python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "product_id": "python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf@5.14.0-284.84.1.el9_2?arch=x86_64" } } } ], "category": "architecture", "name": "x86_64" }, { "branches": [ { "category": "product_version", "name": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-cross-headers@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "product": { "name": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "product_id": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool-debuginfo@7.0.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo-common-s390x@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-debuginfo@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-devel@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-devel-matched@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "perf-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "perf-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "perf-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "rtla-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "rtla-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "rtla-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/rtla@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "bpftool-0:7.0.0-284.84.1.el9_2.s390x", "product": { "name": "bpftool-0:7.0.0-284.84.1.el9_2.s390x", "product_id": "bpftool-0:7.0.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool@7.0.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-core@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-core@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-core@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-extra@5.14.0-284.84.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "product": { "name": "python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "product_id": "python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf@5.14.0-284.84.1.el9_2?arch=s390x" } } } ], "category": "architecture", "name": "s390x" }, { "branches": [ { "category": "product_version", "name": "kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "product": { "name": "kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "product_id": "kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-doc@5.14.0-284.84.1.el9_2?arch=noarch" } } }, { "category": "product_version", "name": "kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "product": { "name": "kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "product_id": "kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-abi-stablelists@5.14.0-284.84.1.el9_2?arch=noarch" } } } ], "category": "architecture", "name": "noarch" }, { "branches": [ { "category": "product_version", "name": "kernel-0:5.14.0-284.84.1.el9_2.src", "product": { "name": "kernel-0:5.14.0-284.84.1.el9_2.src", "product_id": "kernel-0:5.14.0-284.84.1.el9_2.src", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel@5.14.0-284.84.1.el9_2?arch=src" } } } ], "category": "architecture", "name": "src" } ], "category": "vendor", "name": "Red Hat" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:7.0.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64" }, "product_reference": "bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:7.0.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le" }, "product_reference": "bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:7.0.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x" }, "product_reference": "bpftool-0:7.0.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:7.0.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64" }, "product_reference": "bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64" }, "product_reference": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le" }, "product_reference": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x" }, "product_reference": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64" }, "product_reference": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.84.1.el9_2.src as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src" }, "product_reference": "kernel-0:5.14.0-284.84.1.el9_2.src", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch" }, "product_reference": "kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-doc-0:5.14.0-284.84.1.el9_2.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch" }, "product_reference": "kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "perf-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "perf-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "perf-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "perf-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "rtla-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "rtla-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "rtla-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "rtla-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "rtla-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "rtla-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "rtla-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:7.0.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64" }, "product_reference": "bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:7.0.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le" }, "product_reference": "bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:7.0.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x" }, "product_reference": "bpftool-0:7.0.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:7.0.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64" }, "product_reference": "bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64" }, "product_reference": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le" }, "product_reference": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x" }, "product_reference": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64" }, "product_reference": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.84.1.el9_2.src as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src" }, "product_reference": "kernel-0:5.14.0-284.84.1.el9_2.src", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch" }, "product_reference": "kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-doc-0:5.14.0-284.84.1.el9_2.noarch as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch" }, "product_reference": "kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "perf-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "perf-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "perf-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "perf-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "rtla-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "rtla-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "rtla-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "rtla-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "rtla-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "rtla-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "rtla-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:7.0.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64" }, "product_reference": "bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:7.0.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le" }, "product_reference": "bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:7.0.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x" }, "product_reference": "bpftool-0:7.0.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:7.0.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64" }, "product_reference": "bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64" }, "product_reference": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le" }, "product_reference": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x" }, "product_reference": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64" }, "product_reference": "bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.84.1.el9_2.src as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src" }, "product_reference": "kernel-0:5.14.0-284.84.1.el9_2.src", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch" }, "product_reference": "kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-doc-0:5.14.0-284.84.1.el9_2.noarch as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch" }, "product_reference": "kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "perf-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "perf-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "perf-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "perf-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "rtla-0:5.14.0-284.84.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64" }, "product_reference": "rtla-0:5.14.0-284.84.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "rtla-0:5.14.0-284.84.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le" }, "product_reference": "rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "rtla-0:5.14.0-284.84.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x" }, "product_reference": "rtla-0:5.14.0-284.84.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "rtla-0:5.14.0-284.84.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" }, "product_reference": "rtla-0:5.14.0-284.84.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" } ] }, "vulnerabilities": [ { "cve": "CVE-2023-52880", "cwe": { "id": "CWE-99", "name": "Improper Control of Resource Identifiers (\u0027Resource Injection\u0027)" }, "discovery_date": "2024-05-24T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2283468" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\ntty: n_gsm: require CAP_NET_ADMIN to attach N_GSM0710 ldisc\n\nAny unprivileged user can attach N_GSM0710 ldisc, but it requires\nCAP_NET_ADMIN to create a GSM network anyway.\n\nRequire initial namespace CAP_NET_ADMIN to do that.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: tty: n_gsm: require CAP_NET_ADMIN to attach N_GSM0710 ldisc", "title": "Vulnerability summary" }, { "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.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ], "known_not_affected": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2023-52880" }, { "category": "external", "summary": "RHBZ#2283468", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2283468" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2023-52880", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52880" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-52880", "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-52880" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024052422-CVE-2023-52880-d2ff@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024052422-CVE-2023-52880-d2ff@gregkh/T" } ], "release_date": "2024-05-24T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-18T00:24:13+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.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:6744" } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Low" } ], "title": "kernel: tty: n_gsm: require CAP_NET_ADMIN to attach N_GSM0710 ldisc" }, { "cve": "CVE-2024-26886", "cwe": { "id": "CWE-833", "name": "Deadlock" }, "discovery_date": "2024-04-17T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2275678" } ], "notes": [ { "category": "description", "text": "A flaw was found in the Linux kernel\u2019s Bluetooth subsystem, specifically within the af_bluetooth module. The issue arises when attempting to perform a sock_lock on the .recvmsg method, leading to a deadlock situation. In this scenario, multiple tasks wait indefinitely for a resource, causing significant performance degradation or system crashes.\nThe vulnerability occurs during Bluetooth operations, where tasks are blocked for more than 30 seconds, creating potential instability. The solution was to replace the sock_sock lock with the sk_receive_queue.lock in the bt_sock_ioctl function to prevent a use-after-free (UAF) condition and avoid the deadlock.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: Bluetooth: af_bluetooth: Fix deadlock", "title": "Vulnerability summary" }, { "category": "other", "text": "This flaw has been rated as having a Moderate impact because it is believed to be difficult to exploit and cannot be used to achieve local privilege escalation.", "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.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ], "known_not_affected": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-26886" }, { "category": "external", "summary": "RHBZ#2275678", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2275678" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-26886", "url": "https://www.cve.org/CVERecord?id=CVE-2024-26886" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-26886", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-26886" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024041742-CVE-2024-26886-6345@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024041742-CVE-2024-26886-6345@gregkh/T" } ], "release_date": "2024-04-17T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-18T00:24:13+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.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:6744" } ], "scores": [ { "cvss_v3": { "attackComplexity": "HIGH", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "baseScore": 5.3, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: Bluetooth: af_bluetooth: Fix deadlock" }, { "cve": "CVE-2024-26974", "discovery_date": "2024-05-01T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2278354" } ], "notes": [ { "category": "description", "text": "A race condition was found in drivers/crypto/intel/qat/qat_common/adf_aer.c in the Linux kernel during AER recovery.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: crypto: qat - resolve race condition during AER recovery", "title": "Vulnerability summary" }, { "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.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ], "known_not_affected": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-26974" }, { "category": "external", "summary": "RHBZ#2278354", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2278354" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-26974", "url": "https://www.cve.org/CVERecord?id=CVE-2024-26974" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-26974", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-26974" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024050132-CVE-2024-26974-13eb@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024050132-CVE-2024-26974-13eb@gregkh/T" } ], "release_date": "2024-05-01T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-18T00:24:13+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.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:6744" } ], "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.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: crypto: qat - resolve race condition during AER recovery" }, { "cve": "CVE-2024-38559", "cwe": { "id": "CWE-125", "name": "Out-of-bounds Read" }, "discovery_date": "2024-06-19T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2293440" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nscsi: qedf: Ensure the copied buf is NUL terminated\n\nCurrently, we allocate a count-sized kernel buffer and copy count from\nuserspace to that buffer. Later, we use kstrtouint on this buffer but we\ndon\u0027t ensure that the string is terminated inside the buffer, this can\nlead to OOB read when using kstrtouint. Fix this issue by using\nmemdup_user_nul instead of memdup_user.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: scsi: qedf: Ensure the copied buf is NUL terminated", "title": "Vulnerability summary" }, { "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.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ], "known_not_affected": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-38559" }, { "category": "external", "summary": "RHBZ#2293440", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2293440" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-38559", "url": "https://www.cve.org/CVERecord?id=CVE-2024-38559" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-38559", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-38559" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024061953-CVE-2024-38559-3e03@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024061953-CVE-2024-38559-3e03@gregkh/T" } ], "release_date": "2024-06-19T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-18T00:24:13+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.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:6744" } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 4.4, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "HIGH", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Low" } ], "title": "kernel: scsi: qedf: Ensure the copied buf is NUL terminated" }, { "cve": "CVE-2024-38573", "discovery_date": "2024-06-19T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2293420" } ], "notes": [ { "category": "description", "text": "A NULL pointer dereference flaw was found in cppc_cpufreq_get_rate() in the Linux kernel. This issue may result in a crash.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: cppc_cpufreq: Fix possible null pointer dereference", "title": "Vulnerability summary" }, { "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.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ], "known_not_affected": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-38573" }, { "category": "external", "summary": "RHBZ#2293420", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2293420" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-38573", "url": "https://www.cve.org/CVERecord?id=CVE-2024-38573" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-38573", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-38573" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024061957-CVE-2024-38573-d4b6@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024061957-CVE-2024-38573-d4b6@gregkh/T" } ], "release_date": "2024-06-19T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-18T00:24:13+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.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:6744" } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Low" } ], "title": "kernel: cppc_cpufreq: Fix possible null pointer dereference" }, { "cve": "CVE-2024-38615", "cwe": { "id": "CWE-459", "name": "Incomplete Cleanup" }, "discovery_date": "2024-06-19T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2293348" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\ncpufreq: exit() callback is optional\n\nThe exit() callback is optional and shouldn\u0027t be called without checking\na valid pointer first.\n\nAlso, we must clear freq_table pointer even if the exit() callback isn\u0027t\npresent.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: cpufreq: exit() callback is optional", "title": "Vulnerability summary" }, { "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.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ], "known_not_affected": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-38615" }, { "category": "external", "summary": "RHBZ#2293348", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2293348" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-38615", "url": "https://www.cve.org/CVERecord?id=CVE-2024-38615" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-38615", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-38615" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024061922-CVE-2024-38615-0d4c@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024061922-CVE-2024-38615-0d4c@gregkh/T" } ], "release_date": "2024-06-19T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-18T00:24:13+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.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:6744" } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 4.4, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "HIGH", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Low" } ], "title": "kernel: cpufreq: exit() callback is optional" }, { "cve": "CVE-2024-40984", "cwe": { "id": "CWE-476", "name": "NULL Pointer Dereference" }, "discovery_date": "2024-07-12T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2297568" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nACPICA: Revert \"ACPICA: avoid Info: mapping multiple BARs. Your kernel is fine.\"\n\nUndo the modifications made in commit d410ee5109a1 (\"ACPICA: avoid\n\"Info: mapping multiple BARs. Your kernel is fine.\"\"). The initial\npurpose of this commit was to stop memory mappings for operation\nregions from overlapping page boundaries, as it can trigger warnings\nif different page attributes are present.\n\nHowever, it was found that when this situation arises, mapping\ncontinues until the boundary\u0027s end, but there is still an attempt to\nread/write the entire length of the map, leading to a NULL pointer\ndeference. For example, if a four-byte mapping request is made but\nonly one byte is mapped because it hits the current page boundary\u0027s\nend, a four-byte read/write attempt is still made, resulting in a NULL\npointer deference.\n\nInstead, map the entire length, as the ACPI specification does not\nmandate that it must be within the same page boundary. It is\npermissible for it to be mapped across different regions.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: ACPICA: Revert \u0026#34;ACPICA: avoid Info: mapping multiple BARs. Your kernel is fine.\u0026#34;", "title": "Vulnerability summary" }, { "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.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ], "known_not_affected": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-40984" }, { "category": "external", "summary": "RHBZ#2297568", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2297568" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-40984", "url": "https://www.cve.org/CVERecord?id=CVE-2024-40984" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-40984", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-40984" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024071201-CVE-2024-40984-66b2@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024071201-CVE-2024-40984-66b2@gregkh/T" } ], "release_date": "2024-07-12T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-18T00:24:13+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.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:6744" }, { "category": "workaround", "details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.", "product_ids": [ "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: ACPICA: Revert \u0026#34;ACPICA: avoid Info: mapping multiple BARs. Your kernel is fine.\u0026#34;" }, { "cve": "CVE-2024-41023", "cwe": { "id": "CWE-401", "name": "Missing Release of Memory after Effective Lifetime" }, "discovery_date": "2024-07-29T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2300381" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nsched/deadline: Fix task_struct reference leak\n\nDuring the execution of the following stress test with linux-rt:\n\nstress-ng --cyclic 30 --timeout 30 --minimize --quiet\n\nkmemleak frequently reported a memory leak concerning the task_struct:\n\nunreferenced object 0xffff8881305b8000 (size 16136):\n comm \"stress-ng\", pid 614, jiffies 4294883961 (age 286.412s)\n object hex dump (first 32 bytes):\n 02 40 00 00 00 00 00 00 00 00 00 00 00 00 00 00 .@..............\n 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................\n debug hex dump (first 16 bytes):\n 53 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 S...............\n backtrace:\n [\u003c00000000046b6790\u003e] dup_task_struct+0x30/0x540\n [\u003c00000000c5ca0f0b\u003e] copy_process+0x3d9/0x50e0\n [\u003c00000000ced59777\u003e] kernel_clone+0xb0/0x770\n [\u003c00000000a50befdc\u003e] __do_sys_clone+0xb6/0xf0\n [\u003c000000001dbf2008\u003e] do_syscall_64+0x5d/0xf0\n [\u003c00000000552900ff\u003e] entry_SYSCALL_64_after_hwframe+0x6e/0x76\n\nThe issue occurs in start_dl_timer(), which increments the task_struct\nreference count and sets a timer. The timer callback, dl_task_timer,\nis supposed to decrement the reference count upon expiration. However,\nif enqueue_task_dl() is called before the timer expires and cancels it,\nthe reference count is not decremented, leading to the leak.\n\nThis patch fixes the reference leak by ensuring the task_struct\nreference count is properly decremented when the timer is canceled.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: sched/deadline: Fix task_struct reference leak", "title": "Vulnerability summary" }, { "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.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ], "known_not_affected": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-41023" }, { "category": "external", "summary": "RHBZ#2300381", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2300381" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-41023", "url": "https://www.cve.org/CVERecord?id=CVE-2024-41023" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-41023", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-41023" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024072917-CVE-2024-41023-32a0@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024072917-CVE-2024-41023-32a0@gregkh/T" } ], "release_date": "2024-07-29T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-18T00:24:13+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.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:6744" }, { "category": "workaround", "details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.", "product_ids": [ "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 6.1, "baseSeverity": "MEDIUM", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:H", "version": "3.1" }, "products": [ "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: sched/deadline: Fix task_struct reference leak" }, { "cve": "CVE-2024-41031", "cwe": { "id": "CWE-99", "name": "Improper Control of Resource Identifiers (\u0027Resource Injection\u0027)" }, "discovery_date": "2024-07-29T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2300395" } ], "notes": [ { "category": "description", "text": "A vulnerability was found in the Linux kernel related to how large page caching is handled, particularly for AMD64 architectures. The issue stems from the xarray data structure\u0027s inability to support PMD-sized page caches when the base page size is larger than MAX_PAGECACHE_ORDER. The particular configuration on ARM64 architectures can potentially lead to untenable resource allocation and system crashes when large pages are manipulated.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: mm/filemap: skip to create PMD-sized page cache if needed", "title": "Vulnerability summary" }, { "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.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ], "known_not_affected": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-41031" }, { "category": "external", "summary": "RHBZ#2300395", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2300395" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-41031", "url": "https://www.cve.org/CVERecord?id=CVE-2024-41031" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-41031", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-41031" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024072921-CVE-2024-41031-6286@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024072921-CVE-2024-41031-6286@gregkh/T" } ], "release_date": "2024-07-29T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-18T00:24:13+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.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:6744" }, { "category": "workaround", "details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.", "product_ids": [ "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: mm/filemap: skip to create PMD-sized page cache if needed" }, { "cve": "CVE-2024-42241", "cwe": { "id": "CWE-99", "name": "Improper Control of Resource Identifiers (\u0027Resource Injection\u0027)" }, "discovery_date": "2024-08-07T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2303509" } ], "notes": [ { "category": "description", "text": "A denial of service vulnerability was found in the Linux Kernel. In architectures such as ARM64 where the base page size is 64KB, a 512MB page cache could lead to a software crash.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: mm/shmem: disable PMD-sized page cache if needed", "title": "Vulnerability summary" }, { "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.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ], "known_not_affected": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-42241" }, { "category": "external", "summary": "RHBZ#2303509", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2303509" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-42241", "url": "https://www.cve.org/CVERecord?id=CVE-2024-42241" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-42241", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-42241" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024080741-CVE-2024-42241-baee@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024080741-CVE-2024-42241-baee@gregkh/T" } ], "release_date": "2024-08-07T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-18T00:24:13+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.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:6744" } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: mm/shmem: disable PMD-sized page cache if needed" }, { "cve": "CVE-2024-42243", "cwe": { "id": "CWE-20", "name": "Improper Input Validation" }, "discovery_date": "2024-08-07T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2303511" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nmm/filemap: make MAX_PAGECACHE_ORDER acceptable to xarray\n\nPatch series \"mm/filemap: Limit page cache size to that supported by\nxarray\", v2.\n\nCurrently, xarray can\u0027t support arbitrary page cache size. More details\ncan be found from the WARN_ON() statement in xas_split_alloc(). In our\ntest whose code is attached below, we hit the WARN_ON() on ARM64 system\nwhere the base page size is 64KB and huge page size is 512MB. The issue\nwas reported long time ago and some discussions on it can be found here\n[1].\n\n[1] https://www.spinics.net/lists/linux-xfs/msg75404.html\n\nIn order to fix the issue, we need to adjust MAX_PAGECACHE_ORDER to one\nsupported by xarray and avoid PMD-sized page cache if needed. The code\nchanges are suggested by David Hildenbrand.\n\nPATCH[1] adjusts MAX_PAGECACHE_ORDER to that supported by xarray\nPATCH[2-3] avoids PMD-sized page cache in the synchronous readahead path\nPATCH[4] avoids PMD-sized page cache for shmem files if needed\n\nTest program\n============\n# cat test.c\n#define _GNU_SOURCE\n#include \u003cstdio.h\u003e\n#include \u003cstdlib.h\u003e\n#include \u003cunistd.h\u003e\n#include \u003cstring.h\u003e\n#include \u003cfcntl.h\u003e\n#include \u003cerrno.h\u003e\n#include \u003csys/syscall.h\u003e\n#include \u003csys/mman.h\u003e\n\n#define TEST_XFS_FILENAME\t\"/tmp/data\"\n#define TEST_SHMEM_FILENAME\t\"/dev/shm/data\"\n#define TEST_MEM_SIZE\t\t0x20000000\n\nint main(int argc, char **argv)\n{\n\tconst char *filename;\n\tint fd = 0;\n\tvoid *buf = (void *)-1, *p;\n\tint pgsize = getpagesize();\n\tint ret;\n\n\tif (pgsize != 0x10000) {\n\t\tfprintf(stderr, \"64KB base page size is required\\n\");\n\t\treturn -EPERM;\n\t}\n\n\tsystem(\"echo force \u003e /sys/kernel/mm/transparent_hugepage/shmem_enabled\");\n\tsystem(\"rm -fr /tmp/data\");\n\tsystem(\"rm -fr /dev/shm/data\");\n\tsystem(\"echo 1 \u003e /proc/sys/vm/drop_caches\");\n\n\t/* Open xfs or shmem file */\n\tfilename = TEST_XFS_FILENAME;\n\tif (argc \u003e 1 \u0026\u0026 !strcmp(argv[1], \"shmem\"))\n\t\tfilename = TEST_SHMEM_FILENAME;\n\n\tfd = open(filename, O_CREAT | O_RDWR | O_TRUNC);\n\tif (fd \u003c 0) {\n\t\tfprintf(stderr, \"Unable to open \u003c%s\u003e\\n\", filename);\n\t\treturn -EIO;\n\t}\n\n\t/* Extend file size */\n\tret = ftruncate(fd, TEST_MEM_SIZE);\n\tif (ret) {\n\t\tfprintf(stderr, \"Error %d to ftruncate()\\n\", ret);\n\t\tgoto cleanup;\n\t}\n\n\t/* Create VMA */\n\tbuf = mmap(NULL, TEST_MEM_SIZE,\n\t\t PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);\n\tif (buf == (void *)-1) {\n\t\tfprintf(stderr, \"Unable to mmap \u003c%s\u003e\\n\", filename);\n\t\tgoto cleanup;\n\t}\n\n\tfprintf(stdout, \"mapped buffer at 0x%p\\n\", buf);\n\tret = madvise(buf, TEST_MEM_SIZE, MADV_HUGEPAGE);\n if (ret) {\n\t\tfprintf(stderr, \"Unable to madvise(MADV_HUGEPAGE)\\n\");\n\t\tgoto cleanup;\n\t}\n\n\t/* Populate VMA */\n\tret = madvise(buf, TEST_MEM_SIZE, MADV_POPULATE_WRITE);\n\tif (ret) {\n\t\tfprintf(stderr, \"Error %d to madvise(MADV_POPULATE_WRITE)\\n\", ret);\n\t\tgoto cleanup;\n\t}\n\n\t/* Punch the file to enforce xarray split */\n\tret = fallocate(fd, FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE,\n \t\tTEST_MEM_SIZE - pgsize, pgsize);\n\tif (ret)\n\t\tfprintf(stderr, \"Error %d to fallocate()\\n\", ret);\n\ncleanup:\n\tif (buf != (void *)-1)\n\t\tmunmap(buf, TEST_MEM_SIZE);\n\tif (fd \u003e 0)\n\t\tclose(fd);\n\n\treturn 0;\n}\n\n# gcc test.c -o test\n# cat /proc/1/smaps | grep KernelPageSize | head -n 1\nKernelPageSize: 64 kB\n# ./test shmem\n :\n------------[ cut here ]------------\nWARNING: CPU: 17 PID: 5253 at lib/xarray.c:1025 xas_split_alloc+0xf8/0x128\nModules linked in: nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib \\\nnft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct \\\nnft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 \\\nip_set nf_tables rfkill nfnetlink vfat fat virtio_balloon \\\ndrm fuse xfs libcrc32c crct10dif_ce ghash_ce sha2_ce sha256_arm64 \\\nvirtio_net sha1_ce net_failover failover virtio_console virtio_blk \\\ndimlib virtio_mmio\nCPU: 17 PID: 5253 Comm: test Kdump: loaded Tainted: G W 6.10.0-rc5-gavin+ #12\nHardware name: QEMU KVM Virtual Machine, BIOS edk2-20240524-1.el9 05/24/2024\npstate: 83400005 (Nzcv daif +PAN -UAO +TC\n---truncated---", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: mm/filemap: make MAX_PAGECACHE_ORDER acceptable to xarray", "title": "Vulnerability summary" }, { "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.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ], "known_not_affected": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-42243" }, { "category": "external", "summary": "RHBZ#2303511", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2303511" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-42243", "url": "https://www.cve.org/CVERecord?id=CVE-2024-42243" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-42243", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-42243" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024080741-CVE-2024-42243-2ed5@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024080741-CVE-2024-42243-2ed5@gregkh/T" } ], "release_date": "2024-08-07T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-18T00:24:13+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.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:6744" } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Low" } ], "title": "kernel: mm/filemap: make MAX_PAGECACHE_ORDER acceptable to xarray" }, { "cve": "CVE-2024-42246", "cwe": { "id": "CWE-835", "name": "Loop with Unreachable Exit Condition (\u0027Infinite Loop\u0027)" }, "discovery_date": "2024-08-07T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2303514" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nnet, sunrpc: Remap EPERM in case of connection failure in xs_tcp_setup_socket\n\nWhen using a BPF program on kernel_connect(), the call can return -EPERM. This\ncauses xs_tcp_setup_socket() to loop forever, filling up the syslog and causing\nthe kernel to potentially freeze up.\n\nNeil suggested:\n\n This will propagate -EPERM up into other layers which might not be ready\n to handle it. It might be safer to map EPERM to an error we would be more\n likely to expect from the network system - such as ECONNREFUSED or ENETDOWN.\n\nECONNREFUSED as error seems reasonable. For programs setting a different error\ncan be out of reach (see handling in 4fbac77d2d09) in particular on kernels\nwhich do not have f10d05966196 (\"bpf: Make BPF_PROG_RUN_ARRAY return -err\ninstead of allow boolean\"), thus given that it is better to simply remap for\nconsistent behavior. UDP does handle EPERM in xs_udp_send_request().", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: net, sunrpc: Remap EPERM in case of connection failure in xs_tcp_setup_socket", "title": "Vulnerability summary" }, { "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.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ], "known_not_affected": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.84.1.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-42246" }, { "category": "external", "summary": "RHBZ#2303514", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2303514" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-42246", "url": "https://www.cve.org/CVERecord?id=CVE-2024-42246" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-42246", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-42246" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024080742-CVE-2024-42246-0777@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024080742-CVE-2024-42246-0777@gregkh/T" } ], "release_date": "2024-08-07T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-18T00:24:13+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.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:6744" } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.84.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.84.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.84.1.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: net, sunrpc: Remap EPERM in case of connection failure in xs_tcp_setup_socket" } ] }
ghsa-7j6j-8jww-jc3g
Vulnerability from github
In the Linux kernel, the following vulnerability has been resolved:
mm/filemap: make MAX_PAGECACHE_ORDER acceptable to xarray
Patch series "mm/filemap: Limit page cache size to that supported by xarray", v2.
Currently, xarray can't support arbitrary page cache size. More details can be found from the WARN_ON() statement in xas_split_alloc(). In our test whose code is attached below, we hit the WARN_ON() on ARM64 system where the base page size is 64KB and huge page size is 512MB. The issue was reported long time ago and some discussions on it can be found here [1].
[1] https://www.spinics.net/lists/linux-xfs/msg75404.html
In order to fix the issue, we need to adjust MAX_PAGECACHE_ORDER to one supported by xarray and avoid PMD-sized page cache if needed. The code changes are suggested by David Hildenbrand.
PATCH[1] adjusts MAX_PAGECACHE_ORDER to that supported by xarray PATCH[2-3] avoids PMD-sized page cache in the synchronous readahead path PATCH[4] avoids PMD-sized page cache for shmem files if needed
Test program
cat test.c
define _GNU_SOURCE
include
include
include
include
include
include
include
include
define TEST_XFS_FILENAME "/tmp/data"
define TEST_SHMEM_FILENAME "/dev/shm/data"
define TEST_MEM_SIZE 0x20000000
int main(int argc, char argv) { const char filename; int fd = 0; void buf = (void )-1, p; int pgsize = getpagesize(); int ret;
if (pgsize != 0x10000) {
fprintf(stderr, "64KB base page size is required\n");
return -EPERM;
}
system("echo force > /sys/kernel/mm/transparent_hugepage/shmem_enabled");
system("rm -fr /tmp/data");
system("rm -fr /dev/shm/data");
system("echo 1 > /proc/sys/vm/drop_caches");
/* Open xfs or shmem file */
filename = TEST_XFS_FILENAME;
if (argc > 1 && !strcmp(argv[1], "shmem"))
filename = TEST_SHMEM_FILENAME;
fd = open(filename, O_CREAT | O_RDWR | O_TRUNC);
if (fd < 0) {
fprintf(stderr, "Unable to open <%s>\n", filename);
return -EIO;
}
/* Extend file size */
ret = ftruncate(fd, TEST_MEM_SIZE);
if (ret) {
fprintf(stderr, "Error %d to ftruncate()\n", ret);
goto cleanup;
}
/* Create VMA */
buf = mmap(NULL, TEST_MEM_SIZE,
PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
if (buf == (void *)-1) {
fprintf(stderr, "Unable to mmap <%s>\n", filename);
goto cleanup;
}
fprintf(stdout, "mapped buffer at 0x%p\n", buf);
ret = madvise(buf, TEST_MEM_SIZE, MADV_HUGEPAGE);
if (ret) {
fprintf(stderr, "Unable to madvise(MADV_HUGEPAGE)\n");
goto cleanup;
}
/* Populate VMA */
ret = madvise(buf, TEST_MEM_SIZE, MADV_POPULATE_WRITE);
if (ret) {
fprintf(stderr, "Error %d to madvise(MADV_POPULATE_WRITE)\n", ret);
goto cleanup;
}
/* Punch the file to enforce xarray split */
ret = fallocate(fd, FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE,
TEST_MEM_SIZE - pgsize, pgsize);
if (ret)
fprintf(stderr, "Error %d to fallocate()\n", ret);
cleanup: if (buf != (void *)-1) munmap(buf, TEST_MEM_SIZE); if (fd > 0) close(fd);
return 0;
}
gcc test.c -o test
cat /proc/1/smaps | grep KernelPageSize | head -n 1
KernelPageSize: 64 kB
./test shmem
: ------------[ cut here ]------------ WARNING: CPU: 17 PID: 5253 at lib/xarray.c:1025 xas_split_alloc+0xf8/0x128 Modules linked in: nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib \ nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct \ nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 \ ip_set nf_tables rfkill nfnetlink vfat fat virtio_balloon \ drm fuse xfs libcrc32c crct10dif_ce ghash_ce sha2_ce sha256_arm64 \ virtio_net sha1_ce net_failover failover virtio_console virtio_blk \ dimlib virtio_mmio CPU: 17 PID: 5253 Comm: test Kdump: loaded Tainted: G W 6.10.0-rc5-gavin+ #12 Hardware name: QEMU KVM Virtual Machine, BIOS edk2-20240524-1.el9 05/24/2024 pstate: 83400005 (Nzcv daif +PAN -UAO +TC ---truncated---
{ "affected": [], "aliases": [ "CVE-2024-42243" ], "database_specific": { "cwe_ids": [], "github_reviewed": false, "github_reviewed_at": null, "nvd_published_at": "2024-08-07T16:15:47Z", "severity": "MODERATE" }, "details": "In the Linux kernel, the following vulnerability has been resolved:\n\nmm/filemap: make MAX_PAGECACHE_ORDER acceptable to xarray\n\nPatch series \"mm/filemap: Limit page cache size to that supported by\nxarray\", v2.\n\nCurrently, xarray can\u0027t support arbitrary page cache size. More details\ncan be found from the WARN_ON() statement in xas_split_alloc(). In our\ntest whose code is attached below, we hit the WARN_ON() on ARM64 system\nwhere the base page size is 64KB and huge page size is 512MB. The issue\nwas reported long time ago and some discussions on it can be found here\n[1].\n\n[1] https://www.spinics.net/lists/linux-xfs/msg75404.html\n\nIn order to fix the issue, we need to adjust MAX_PAGECACHE_ORDER to one\nsupported by xarray and avoid PMD-sized page cache if needed. The code\nchanges are suggested by David Hildenbrand.\n\nPATCH[1] adjusts MAX_PAGECACHE_ORDER to that supported by xarray\nPATCH[2-3] avoids PMD-sized page cache in the synchronous readahead path\nPATCH[4] avoids PMD-sized page cache for shmem files if needed\n\nTest program\n============\n# cat test.c\n#define _GNU_SOURCE\n#include \u003cstdio.h\u003e\n#include \u003cstdlib.h\u003e\n#include \u003cunistd.h\u003e\n#include \u003cstring.h\u003e\n#include \u003cfcntl.h\u003e\n#include \u003cerrno.h\u003e\n#include \u003csys/syscall.h\u003e\n#include \u003csys/mman.h\u003e\n\n#define TEST_XFS_FILENAME\t\"/tmp/data\"\n#define TEST_SHMEM_FILENAME\t\"/dev/shm/data\"\n#define TEST_MEM_SIZE\t\t0x20000000\n\nint main(int argc, char **argv)\n{\n\tconst char *filename;\n\tint fd = 0;\n\tvoid *buf = (void *)-1, *p;\n\tint pgsize = getpagesize();\n\tint ret;\n\n\tif (pgsize != 0x10000) {\n\t\tfprintf(stderr, \"64KB base page size is required\\n\");\n\t\treturn -EPERM;\n\t}\n\n\tsystem(\"echo force \u003e /sys/kernel/mm/transparent_hugepage/shmem_enabled\");\n\tsystem(\"rm -fr /tmp/data\");\n\tsystem(\"rm -fr /dev/shm/data\");\n\tsystem(\"echo 1 \u003e /proc/sys/vm/drop_caches\");\n\n\t/* Open xfs or shmem file */\n\tfilename = TEST_XFS_FILENAME;\n\tif (argc \u003e 1 \u0026\u0026 !strcmp(argv[1], \"shmem\"))\n\t\tfilename = TEST_SHMEM_FILENAME;\n\n\tfd = open(filename, O_CREAT | O_RDWR | O_TRUNC);\n\tif (fd \u003c 0) {\n\t\tfprintf(stderr, \"Unable to open \u003c%s\u003e\\n\", filename);\n\t\treturn -EIO;\n\t}\n\n\t/* Extend file size */\n\tret = ftruncate(fd, TEST_MEM_SIZE);\n\tif (ret) {\n\t\tfprintf(stderr, \"Error %d to ftruncate()\\n\", ret);\n\t\tgoto cleanup;\n\t}\n\n\t/* Create VMA */\n\tbuf = mmap(NULL, TEST_MEM_SIZE,\n\t\t PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);\n\tif (buf == (void *)-1) {\n\t\tfprintf(stderr, \"Unable to mmap \u003c%s\u003e\\n\", filename);\n\t\tgoto cleanup;\n\t}\n\n\tfprintf(stdout, \"mapped buffer at 0x%p\\n\", buf);\n\tret = madvise(buf, TEST_MEM_SIZE, MADV_HUGEPAGE);\n if (ret) {\n\t\tfprintf(stderr, \"Unable to madvise(MADV_HUGEPAGE)\\n\");\n\t\tgoto cleanup;\n\t}\n\n\t/* Populate VMA */\n\tret = madvise(buf, TEST_MEM_SIZE, MADV_POPULATE_WRITE);\n\tif (ret) {\n\t\tfprintf(stderr, \"Error %d to madvise(MADV_POPULATE_WRITE)\\n\", ret);\n\t\tgoto cleanup;\n\t}\n\n\t/* Punch the file to enforce xarray split */\n\tret = fallocate(fd, FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE,\n \t\tTEST_MEM_SIZE - pgsize, pgsize);\n\tif (ret)\n\t\tfprintf(stderr, \"Error %d to fallocate()\\n\", ret);\n\ncleanup:\n\tif (buf != (void *)-1)\n\t\tmunmap(buf, TEST_MEM_SIZE);\n\tif (fd \u003e 0)\n\t\tclose(fd);\n\n\treturn 0;\n}\n\n# gcc test.c -o test\n# cat /proc/1/smaps | grep KernelPageSize | head -n 1\nKernelPageSize: 64 kB\n# ./test shmem\n :\n------------[ cut here ]------------\nWARNING: CPU: 17 PID: 5253 at lib/xarray.c:1025 xas_split_alloc+0xf8/0x128\nModules linked in: nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib \\\nnft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct \\\nnft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 \\\nip_set nf_tables rfkill nfnetlink vfat fat virtio_balloon \\\ndrm fuse xfs libcrc32c crct10dif_ce ghash_ce sha2_ce sha256_arm64 \\\nvirtio_net sha1_ce net_failover failover virtio_console virtio_blk \\\ndimlib virtio_mmio\nCPU: 17 PID: 5253 Comm: test Kdump: loaded Tainted: G W 6.10.0-rc5-gavin+ #12\nHardware name: QEMU KVM Virtual Machine, BIOS edk2-20240524-1.el9 05/24/2024\npstate: 83400005 (Nzcv daif +PAN -UAO +TC\n---truncated---", "id": "GHSA-7j6j-8jww-jc3g", "modified": "2024-08-08T15:31:29Z", "published": "2024-08-07T18:30:43Z", "references": [ { "type": "ADVISORY", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-42243" }, { "type": "WEB", "url": "https://git.kernel.org/stable/c/099d90642a711caae377f53309abfe27e8724a8b" }, { "type": "WEB", "url": "https://git.kernel.org/stable/c/333c5539a31f48828456aa9997ec2808f06a699a" }, { "type": "WEB", "url": "https://git.kernel.org/stable/c/a0c42ddd0969fdc760a85e20e267776028a7ca4e" } ], "schema_version": "1.4.0", "severity": [ { "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "type": "CVSS_V3" } ] }
Sightings
Author | Source | Type | Date |
---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or seen somewhere by the user.
- Confirmed: The vulnerability is confirmed from an analyst perspective.
- Exploited: This vulnerability was exploited and seen by the user reporting the sighting.
- Patched: This vulnerability was successfully patched by the user reporting the sighting.
- Not exploited: This vulnerability was not exploited or seen by the user reporting the sighting.
- Not confirmed: The user expresses doubt about the veracity of the vulnerability.
- Not patched: This vulnerability was not successfully patched by the user reporting the sighting.