EUVD-2025-20901

| CVE-2025-38345 MEDIUM
2025-07-10 416baaa9-dc9f-4396-8d5f-8c081fb06d67
5.5
CVSS 3.1
Share

CVSS Vector

CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Attack Vector
Local
Attack Complexity
Low
Privileges Required
Low
User Interaction
None
Scope
Unchanged
Confidentiality
None
Integrity
None
Availability
High

Lifecycle Timeline

4
Analysis Generated
Mar 16, 2026 - 06:52 vuln.today
EUVD ID Assigned
Mar 16, 2026 - 06:52 euvd
EUVD-2025-20901
Patch Released
Mar 16, 2026 - 06:52 nvd
Patch available
CVE Published
Jul 10, 2025 - 09:15 nvd
MEDIUM 5.5

Description

In the Linux kernel, the following vulnerability has been resolved: ACPICA: fix acpi operand cache leak in dswstate.c ACPICA commit 987a3b5cf7175916e2a4b6ea5b8e70f830dfe732 I found an ACPI cache leak in ACPI early termination and boot continuing case. When early termination occurs due to malicious ACPI table, Linux kernel terminates ACPI function and continues to boot process. While kernel terminates ACPI function, kmem_cache_destroy() reports Acpi-Operand cache leak. Boot log of ACPI operand cache leak is as follows: >[ 0.585957] ACPI: Added _OSI(Module Device) >[ 0.587218] ACPI: Added _OSI(Processor Device) >[ 0.588530] ACPI: Added _OSI(3.0 _SCP Extensions) >[ 0.589790] ACPI: Added _OSI(Processor Aggregator Device) >[ 0.591534] ACPI Error: Illegal I/O port address/length above 64K: C806E00000004002/0x2 (20170303/hwvalid-155) >[ 0.594351] ACPI Exception: AE_LIMIT, Unable to initialize fixed events (20170303/evevent-88) >[ 0.597858] ACPI: Unable to start the ACPI Interpreter >[ 0.599162] ACPI Error: Could not remove SCI handler (20170303/evmisc-281) >[ 0.601836] kmem_cache_destroy Acpi-Operand: Slab cache still has objects >[ 0.603556] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 4.12.0-rc5 #26 >[ 0.605159] Hardware name: innotek gmb_h virtual_box/virtual_box, BIOS virtual_box 12/01/2006 >[ 0.609177] Call Trace: >[ 0.610063] ? dump_stack+0x5c/0x81 >[ 0.611118] ? kmem_cache_destroy+0x1aa/0x1c0 >[ 0.612632] ? acpi_sleep_proc_init+0x27/0x27 >[ 0.613906] ? acpi_os_delete_cache+0xa/0x10 >[ 0.617986] ? acpi_ut_delete_caches+0x3f/0x7b >[ 0.619293] ? acpi_terminate+0xa/0x14 >[ 0.620394] ? acpi_init+0x2af/0x34f >[ 0.621616] ? __class_create+0x4c/0x80 >[ 0.623412] ? video_setup+0x7f/0x7f >[ 0.624585] ? acpi_sleep_proc_init+0x27/0x27 >[ 0.625861] ? do_one_initcall+0x4e/0x1a0 >[ 0.627513] ? kernel_init_freeable+0x19e/0x21f >[ 0.628972] ? rest_init+0x80/0x80 >[ 0.630043] ? kernel_init+0xa/0x100 >[ 0.631084] ? ret_from_fork+0x25/0x30 >[ 0.633343] vgaarb: loaded >[ 0.635036] EDAC MC: Ver: 3.0.0 >[ 0.638601] PCI: Probing PCI hardware >[ 0.639833] PCI host bridge to bus 0000:00 >[ 0.641031] pci_bus 0000:00: root bus resource [io 0x0000-0xffff] > ... Continue to boot and log is omitted ... I analyzed this memory leak in detail and found acpi_ds_obj_stack_pop_and_ delete() function miscalculated the top of the stack. acpi_ds_obj_stack_push() function uses walk_state->operand_index for start position of the top, but acpi_ds_obj_stack_pop_and_delete() function considers index 0 for it. Therefore, this causes acpi operand memory leak. This cache leak causes a security threat because an old kernel (<= 4.9) shows memory locations of kernel functions in stack dump. Some malicious users could use this information to neutralize kernel ASLR. I made a patch to fix ACPI operand cache leak.

Analysis

In the Linux kernel, the following vulnerability has been resolved:

ACPICA: fix acpi operand cache leak in dswstate.c

ACPICA commit 987a3b5cf7175916e2a4b6ea5b8e70f830dfe732

I found an ACPI cache leak in ACPI early termination and boot continuing case.

When early termination occurs due to malicious ACPI table, Linux kernel terminates ACPI function and continues to boot process. While kernel terminates ACPI function, kmem_cache_destroy() reports Acpi-Operand cache leak.

Boot log of ACPI operand cache leak is as follows: >[ 0.585957] ACPI: Added _OSI(Module Device) >[ 0.587218] ACPI: Added _OSI(Processor Device) >[ 0.588530] ACPI: Added _OSI(3.0 _SCP Extensions) >[ 0.589790] ACPI: Added _OSI(Processor Aggregator Device) >[ 0.591534] ACPI Error: Illegal I/O port address/length above 64K: C806E00000004002/0x2 (20170303/hwvalid-155) >[ 0.594351] ACPI Exception: AE_LIMIT, Unable to initialize fixed events (20170303/evevent-88) >[ 0.597858] ACPI: Unable to start the ACPI Interpreter >[ 0.599162] ACPI Error: Could not remove SCI handler (20170303/evmisc-281) >[ 0.601836] kmem_cache_destroy Acpi-Operand: Slab cache still has objects >[ 0.603556] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 4.12.0-rc5 #26 >[ 0.605159] Hardware name: innotek gmb_h virtual_box/virtual_box, BIOS virtual_box 12/01/2006 >[ 0.609177] Call Trace: >[ 0.610063] ? dump_stack+0x5c/0x81 >[ 0.611118] ? kmem_cache_destroy+0x1aa/0x1c0 >[ 0.612632] ? acpi_sleep_proc_init+0x27/0x27 >[ 0.613906] ? acpi_os_delete_cache+0xa/0x10 >[ 0.617986] ? acpi_ut_delete_caches+0x3f/0x7b >[ 0.619293] ? acpi_terminate+0xa/0x14 >[ 0.620394] ? acpi_init+0x2af/0x34f >[ 0.621616] ? __class_create+0x4c/0x80 >[ 0.623412] ? video_setup+0x7f/0x7f >[ 0.624585] ? acpi_sleep_proc_init+0x27/0x27 >[ 0.625861] ? do_one_initcall+0x4e/0x1a0 >[ 0.627513] ? kernel_init_freeable+0x19e/0x21f >[ 0.628972] ? rest_init+0x80/0x80 >[ 0.630043] ? kernel_init+0xa/0x100 >[ 0.631084] ? ret_from_fork+0x25/0x30 >[ 0.633343] vgaarb: loaded >[ 0.635036] EDAC MC: Ver: 3.0.0 >[ 0.638601] PCI: Probing PCI hardware >[ 0.639833] PCI host bridge to bus 0000:00 >[ 0.641031] pci_bus 0000:00: root bus resource [io 0x0000-0xffff] > ... Continue to boot and log is omitted ...

I analyzed this memory leak in detail and found acpi_ds_obj_stack_pop_and_ delete() function miscalculated the top of the stack. acpi_ds_obj_stack_push() function uses walk_state->operand_index for start position of the top, but acpi_ds_obj_stack_pop_and_delete() function considers index 0 for it. Therefore, this causes acpi operand memory leak.

This cache leak causes a security threat because an old kernel (<= 4.9) shows memory locations of kernel functions in stack dump. Some malicious users could use this information to neutralize kernel ASLR.

I made a patch to fix ACPI operand cache leak.

Technical Context

This vulnerability is classified as Memory Leak (CWE-401).

Affected Products

Affected products: Linux Linux Kernel

Remediation

A vendor patch is available. Apply it as soon as possible and verify the fix.

Priority Score

28
Low Medium High Critical
KEV: 0
EPSS: +0.0
CVSS: +28
POC: 0

Vendor Status

Ubuntu

Priority: Medium
linux-hwe
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
focal DNE -
xenial needed -
questing DNE -
upstream released 6.16~rc1
bionic ignored end of standard support
linux-hwe-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
focal DNE -
bionic needed -
questing DNE -
upstream released 6.16~rc1
linux-hwe-5.8
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-hwe-5.11
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-hwe-5.11
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-hwe-5.13
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-hwe-5.13
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-hwe-5.15
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-hwe-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
focal released 5.15.0-156.166~20.04.1
questing DNE -
upstream released 6.16~rc1
linux-hwe-5.19
Release Status Version
jammy ignored superseded by linux-hwe-6.2
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-hwe-6.2
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-hwe-6.2
Release Status Version
jammy ignored superseded by linux-hwe-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-hwe-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-hwe-6.5
Release Status Version
jammy ignored superseded by linux-hwe-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-hwe-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-hwe-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy released 6.8.0-100.100~22.04.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.16~rc1
linux-hwe-6.11
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
noble ignored superseded by linux-hwe-6.14, was needs-triage
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.16~rc1
linux-hwe-edge
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
xenial ignored end of standard support
linux-lts-xenial
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.16~rc1
trusty ignored end of standard support, was needed
linux-kvm
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
bionic needed -
focal needed -
trusty DNE -
jammy released 5.15.0-1088.93
questing DNE -
xenial needed -
upstream released 6.16~rc1
linux-allwinner-5.19
Release Status Version
jammy ignored end of kernel support
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-aws-5.0
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-aws-5.3
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-aws-5.3
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-aws-5.4
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-aws-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
bionic needed -
linux-aws-5.8
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-aws-5.11
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-aws-5.11
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-aws-5.13
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-aws-5.13
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-aws-5.15
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-aws-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
upstream released 6.16~rc1
focal released 5.15.0-1092.99~20.04.1
questing DNE -
linux-aws-5.19
Release Status Version
jammy ignored superseded by linux-aws-6.2
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-aws-6.2
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-aws-6.2
Release Status Version
jammy ignored superseded by linux-aws-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-aws-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-aws-6.5
Release Status Version
jammy ignored superseded by linux-aws-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-aws-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-aws-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy released 6.8.0-1046.49~22.04.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-aws-hwe
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
xenial needed -
linux-azure-4.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
bionic needed -
linux-azure-5.3
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-5.4
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-azure-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
bionic needed -
linux-azure-5.8
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-5.11
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-azure-5.11
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-5.13
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-azure-5.13
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-5.15
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-azure-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
focal released 5.15.0-1096.105~20.04.1
trusty DNE -
xenial DNE -
bionic DNE -
upstream released 6.16~rc1
questing DNE -
linux-azure-5.19
Release Status Version
jammy ignored superseded by linux-azure-6.2
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-6.2
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-azure-6.2
Release Status Version
jammy ignored superseded by linux-azure-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-azure-6.5
Release Status Version
jammy ignored superseded by linux-azure-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-azure-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy pending 6.8.0-1046.52~22.04.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-azure-6.11
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
noble ignored superseded by linux-azure-6.14, was needs-triage
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-azure-fde
Release Status Version
oracular DNE -
noble needed -
jammy needed -
trusty DNE -
xenial DNE -
bionic DNE -
upstream released 6.16~rc1
plucky not-affected 6.14.0-1014.14
questing needs-triage -
focal ignored end of standard support
linux-azure-fde-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
upstream released 6.16~rc1
questing DNE -
focal needed -
linux-azure-fde-5.19
Release Status Version
jammy ignored superseded by linux-azure-fde-6.2
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-fde-6.2
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-azure-fde-6.2
Release Status Version
jammy ignored replaced by linux-azure-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored replaced by linux-azure-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-azure-nvidia
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
noble pending 6.8.0-1031.34
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-bluefield
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
upstream released 6.16~rc1
questing DNE -
focal needed -
linux-azure-edge
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-5.3
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-fips
Release Status Version
oracular DNE -
plucky DNE -
xenial needed -
trusty DNE -
upstream released 6.16~rc1
jammy released 5.15.0-156.166+fips1
questing DNE -
noble released 6.8.0-100.100+fips1
bionic needed -
focal needed -
linux-aws-fips
Release Status Version
oracular DNE -
plucky DNE -
noble released 6.8.0-1046.49+fips1
jammy released 5.15.0-1092.99+fips1
trusty DNE -
upstream released 6.16~rc1
questing DNE -
bionic needed -
focal needed -
xenial DNE -
linux-azure-fips
Release Status Version
oracular DNE -
plucky DNE -
trusty DNE -
upstream released 6.16~rc1
jammy released 5.15.0-1096.105+fips1
questing DNE -
noble released 6.8.0-1046.52+fips1
bionic needed -
focal needed -
xenial DNE -
linux-gcp-fips
Release Status Version
oracular DNE -
plucky DNE -
bionic needed -
focal needed -
jammy released 5.15.0-1092.101+fips1
trusty DNE -
questing DNE -
noble released 6.8.0-1047.50+fips1
upstream released 6.16~rc1
xenial DNE -
linux-gcp-4.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
bionic needed -
trusty DNE -
xenial DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-gcp-5.3
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-gcp-5.4
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-gcp-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
bionic needed -
trusty DNE -
xenial DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-gcp-5.8
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-gcp-5.11
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-gcp-5.11
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-gcp-5.13
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-gcp-5.13
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-gcp-5.15
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-gcp-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
upstream released 6.16~rc1
focal released 5.15.0-1092.101~20.04.1
questing DNE -
linux-gcp-5.19
Release Status Version
jammy ignored superseded by linux-gcp-6.2
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-gcp-6.2
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-gcp-6.2
Release Status Version
jammy ignored superseded by linux-gcp-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-gcp-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-gcp-6.5
Release Status Version
jammy ignored superseded by linux-gcp-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-gcp-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-gcp-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy released 6.8.0-1047.50~22.04.2
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.16~rc1
linux-gcp-6.11
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
noble ignored superseded by linux-gcp-6.14, was needs-triage
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
upstream released 6.16~rc1
questing DNE -
linux-gke
Release Status Version
focal ignored end of kernel support
oracular DNE -
plucky DNE -
trusty DNE -
xenial ignored end of standard support
bionic DNE -
jammy released 5.15.0-1089.95
questing DNE -
upstream released 6.16~rc1
noble released 6.8.0-1043.48
linux-gke-4.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-gke-5.0
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-gke-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-gke-5.15
Release Status Version
focal ignored end of kernel support
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
linux-gkeop
Release Status Version
focal ignored end of kernel support
oracular DNE -
plucky DNE -
noble released 6.8.0-1030.33
trusty DNE -
xenial DNE -
bionic DNE -
jammy released 5.15.0-1075.83
questing DNE -
upstream released 6.16~rc1
linux-gkeop-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-gkeop-5.15
Release Status Version
focal ignored end of kernel support
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
upstream released 6.16~rc1
linux-ibm
Release Status Version
oracular DNE -
plucky DNE -
focal needed -
trusty DNE -
xenial DNE -
bionic DNE -
jammy released 5.15.0-1086.89
questing DNE -
upstream released 6.16~rc1
noble released 6.8.0-1044.44
linux-ibm-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
bionic needed -
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
upstream released 6.16~rc1
linux-ibm-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
focal released 5.15.0-1086.89~20.04.1
questing DNE -
upstream released 6.16~rc1
linux-ibm-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.16~rc1
jammy released 6.8.0-1044.44~22.04.1
linux-intel-5.13
Release Status Version
focal ignored end of kernel support
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
linux-intel-iotg
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy released 5.15.0-1087.93
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.16~rc1
linux-intel-iotg-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
focal released 5.15.0-1087.93~20.04.1
questing DNE -
upstream released 6.16~rc1
linux-iot
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
focal needed -
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
upstream released 6.16~rc1
linux-intel-iot-realtime
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy released 5.15.0-1085.87
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.16~rc1
linux-lowlatency
Release Status Version
plucky DNE -
oracular ignored end of life, was needed
noble released 6.8.0-100.100.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy released 5.15.0-156.166
questing DNE -
upstream released 6.16~rc1
linux-lowlatency-hwe-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
focal released 5.15.0-156.166~20.04.1
questing DNE -
upstream released 6.16~rc1
linux-lowlatency-hwe-5.19
Release Status Version
jammy ignored superseded by linux-lowlatency-hwe-6.2
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-lowlatency-hwe-6.2
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-lowlatency-hwe-6.2
Release Status Version
jammy ignored superseded by linux-lowlatency-hwe-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-lowlatency-hwe-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-lowlatency-hwe-6.5
Release Status Version
jammy ignored superseded by linux-lowlatency-hwe-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-lowlatency-hwe-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-lowlatency-hwe-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy released 6.8.0-100.100.1~22.04.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.16~rc1
linux-lowlatency-hwe-6.11
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
noble ignored replaced by linux-hwe-6.14, was needs-triage
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.16~rc1
linux-nvidia
Release Status Version
oracular DNE -
plucky DNE -
noble released 6.8.0-1046.49
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy released 5.15.0-1087.88
questing DNE -
upstream released 6.16~rc1
linux-nvidia-6.2
Release Status Version
jammy ignored superseded by linux-nvidia-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-nvidia-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-nvidia-6.5
Release Status Version
jammy ignored superseded by linux-nvidia-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-nvidia-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-nvidia-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy released 6.8.0-1046.49~22.04.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.16~rc1
linux-nvidia-lowlatency
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
noble released 6.8.0-1046.49.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.16~rc1
linux-nvidia-tegra
Release Status Version
oracular DNE -
plucky DNE -
noble pending 6.8.0-1017.17
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy released 5.15.0-1045.45
questing DNE -
upstream released 6.16~rc1
linux-nvidia-tegra-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
focal released 5.15.0-1045.45~20.04.1
questing DNE -
upstream released 6.16~rc1
linux-nvidia-tegra-igx
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy released 5.15.0-1034.34
questing DNE -
upstream released 6.16~rc1
linux-oracle-5.0
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oracle-5.3
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-oracle-5.3
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oracle-5.4
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-oracle-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic needed -
upstream released 6.16~rc1
linux-oracle-5.8
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oracle-5.11
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-oracle-5.11
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oracle-5.13
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-oracle-5.13
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oracle-5.15
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-oracle-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
focal released 5.15.0-1090.96~20.04.1
questing DNE -
upstream released 6.16~rc1
linux-oracle-6.5
Release Status Version
jammy ignored superseded by linux-oracle-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oracle-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-oracle-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy released 6.8.0-1043.44~22.04.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.16~rc1
linux-oem
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial ignored end of standard support
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-oem-5.6
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oem-5.10
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-oem-5.10
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oem-5.13
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-oem-5.13
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oem-5.14
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-oem-5.14
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored replaced by linux-hwe-5.15
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-oem-5.17
Release Status Version
jammy ignored superseded by linux-oem-6.1
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oem-6.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-oem-6.0
Release Status Version
jammy ignored superseded by linux-oem-6.1
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oem-6.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-oem-6.1
Release Status Version
jammy ignored superseded by linux-oem-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oem-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-oem-6.5
Release Status Version
jammy ignored superseded by linux-oem-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oem-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-oem-6.8
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
noble ignored superseded by linux-oem-6.14, was needed
upstream released 6.16~rc1
linux-oem-6.11
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
upstream released 6.16~rc1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
noble ignored superseded by linux-oem-6.14, was needed
questing DNE -
linux-raspi2
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored replaced by linux-raspi
trusty DNE -
xenial ignored end of standard support
bionic ignored end of standard support
questing DNE -
focal ignored end of standard support
linux-raspi-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic needed -
upstream released 6.16~rc1
linux-raspi-realtime
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
noble released 6.8.0-2037.38
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.16~rc1
linux-riscv
Release Status Version
jammy ignored end of kernel support
noble ignored replaced by linux-riscv-6.14
oracular ignored end of life, was needed
plucky released 6.14.0-34.34.1
trusty DNE -
xenial DNE -
bionic DNE -
questing not-affected 6.17.0-4.4.1
upstream released 6.16~rc1
focal ignored end of standard support
linux-riscv-5.8
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-riscv-5.11
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-riscv-5.11
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-riscv-5.13
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-riscv-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
focal released 5.15.0-1087.91~20.04.1
questing DNE -
upstream released 6.16~rc1
linux-riscv-5.19
Release Status Version
jammy ignored end of kernel support
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-riscv-6.5
Release Status Version
jammy ignored superseded by linux-riscv-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-riscv-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-riscv-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy released 6.8.0-100.100~22.04.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.16~rc1
linux-starfive-5.19
Release Status Version
jammy ignored end of kernel support
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-starfive-6.2
Release Status Version
jammy ignored superseded by linux-starfive-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-starfive-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-starfive-6.5
Release Status Version
jammy ignored end of kernel support
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-xilinx-zynqmp
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
jammy released 5.15.0-1056.60
questing DNE -
focal needed -
upstream released 6.16~rc1
linux
Release Status Version
oracular ignored end of life, was needed
jammy released 5.15.0-156.166
bionic needed -
upstream released 6.16~rc1
plucky released 6.14.0-34.34
questing not-affected 6.16.0-13.13
focal needed -
xenial needed -
noble released 6.8.0-100.100
trusty ignored end of standard support, was needed
linux-aws
Release Status Version
oracular ignored end of life, was needed
noble released 6.8.0-1046.49
upstream released 6.16~rc1
jammy released 5.15.0-1092.99
plucky released 6.14.0-1015.15
questing not-affected 6.16.0-1001.1
bionic needed -
focal needed -
xenial needed -
trusty ignored end of standard support, was needed
linux-azure
Release Status Version
oracular ignored end of life, was needed
plucky released 6.14.0-1014.14
noble released 6.8.0-1046.52
jammy released 5.15.0-1096.105
upstream released 6.16~rc1
questing not-affected 6.16.0-1001.1
focal needed -
xenial needed -
bionic ignored end of standard support
trusty ignored end of standard support, was needed
linux-gcp
Release Status Version
oracular ignored end of life, was needed
plucky released 6.14.0-1018.19
focal needed -
xenial needed -
noble released 6.8.0-1047.50
trusty DNE -
upstream released 6.16~rc1
jammy released 5.15.0-1092.101
questing not-affected 6.16.0-1001.1
bionic ignored end of standard support
linux-oracle
Release Status Version
oracular ignored end of life, was needed
plucky released 6.14.0-1015.15
noble released 6.8.0-1043.44
trusty DNE -
jammy released 5.15.0-1090.96
questing not-affected 6.16.0-1001.1
bionic needed -
focal needed -
xenial needed -
upstream released 6.16~rc1
linux-raspi
Release Status Version
oracular ignored end of life, was needed
plucky released 6.14.0-1016.16
noble released 6.8.0-1047.51
trusty DNE -
xenial DNE -
bionic DNE -
jammy released 5.15.0-1086.89
questing not-affected 6.17.0-1003.3
focal needed -
upstream released 6.16~rc1
linux-realtime
Release Status Version
oracular ignored end of life, was needed
plucky released 6.14.0-1014.14
noble released 6.8.1-1041.42
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy released 5.15.0-1092.101
questing not-affected 6.17.0-1001.2
upstream released 6.16~rc1
linux-intel
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
noble ignored end of kernel support, was needed
upstream released 6.16~rc1
questing DNE -
linux-oem-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
noble released 6.14.0-1014.14
questing DNE -
upstream released 6.16~rc1
linux-riscv-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
noble released 6.14.0-34.34.1~24.04.1
questing DNE -
upstream released 6.16~rc1
linux-aws-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
noble released 6.14.0-1015.15~24.04.1
upstream released 6.16~rc1
questing DNE -
linux-gcp-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
questing DNE -
noble released 6.14.0-1018.19~24.04.1
upstream released 6.16~rc1
linux-hwe-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
noble not-affected -
questing DNE -
upstream released 6.16~rc1
linux-oracle-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
noble released 6.14.0-1015.15~24.04.1
questing DNE -
upstream released 6.16~rc1
linux-nvidia-6.11
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
upstream released 6.16~rc1
noble ignored end of kernel support, was needed
questing DNE -
linux-realtime-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
upstream released 6.16~rc1
noble released 6.14.0-1014.14~24.04.1
questing DNE -
linux-realtime-6.8
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
noble DNE -
plucky DNE -
upstream released 6.16~rc1
jammy released 6.8.1-1041.42~22.04.1
questing DNE -
linux-azure-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
questing DNE -
upstream released 6.16~rc1
noble released 6.14.0-1014.14~24.04.1
linux-azure-fde-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
questing DNE -
noble not-affected 6.14.0-1014.14~24.04.1
upstream released 6.16~rc1
linux-azure-nvidia-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
questing DNE -
noble released 6.14.0-1007.7
upstream released 6.16~rc1
linux-xilinx
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky not-affected -
questing DNE -
upstream released 6.16~rc1
noble released 6.8.0-1023.24
linux-oem-6.17
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
noble not-affected 6.17.0-1005.5
plucky DNE -
questing DNE -
upstream released 6.16~rc1
linux-azure-fde-6.8
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy needed -
noble DNE -
plucky DNE -
questing DNE -
upstream released 6.16~rc1
linux-aws-6.17
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
noble not-affected 6.17.0-1005.5~24.04.2
questing DNE -
upstream released 6.16~rc1
linux-gcp-6.17
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
questing DNE -
noble not-affected 6.17.0-1004.4~24.04.3
upstream released 6.16~rc1
linux-hwe-6.17
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
questing DNE -
noble not-affected 6.17.0-14.14~24.04.1
upstream released 6.16~rc1
linux-oracle-6.17
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
questing DNE -
noble not-affected 6.17.0-1004.4~24.04.2
upstream released 6.16~rc1
linux-riscv-6.17
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
questing DNE -
noble not-affected 6.17.0-14.14.1~24.04.1
upstream released 6.16~rc1
linux-azure-6.17
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
noble not-affected 6.17.0-1008.8~24.04.1
questing DNE -
upstream released 6.16~rc1
linux-azure-fde-6.17
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
noble needs-triage -
questing DNE -
upstream released 6.16~rc1

Debian

linux
Release Status Fixed Version Urgency
bullseye fixed 5.10.244-1 -
bullseye (security) fixed 5.10.251-1 -
bookworm fixed 6.1.147-1 -
bookworm (security) fixed 6.1.164-1 -
trixie fixed 6.12.73-1 -
trixie (security) fixed 6.12.74-2 -
forky fixed 6.19.6-2 -
sid fixed 6.19.8-1 -
(unstable) fixed 6.12.35-1 -
linux-6.1
Release Status Fixed Version Urgency
bullseye (security) fixed 6.1.164-1~deb11u1 -
bullseye fixed 6.1.153-1~deb11u1 -

Share

EUVD-2025-20901 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy