CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Lifecycle Timeline
4Description
In the Linux kernel, the following vulnerability has been resolved: bnxt_en: Fix double invocation of bnxt_ulp_stop()/bnxt_ulp_start() Before the commit under the Fixes tag below, bnxt_ulp_stop() and bnxt_ulp_start() were always invoked in pairs. After that commit, the new bnxt_ulp_restart() can be invoked after bnxt_ulp_stop() has been called. This may result in the RoCE driver's aux driver .suspend() method being invoked twice. The 2nd bnxt_re_suspend() call will crash when it dereferences a NULL pointer: (NULL ib_device): Handle device suspend call BUG: kernel NULL pointer dereference, address: 0000000000000b78 PGD 0 P4D 0 Oops: Oops: 0000 [#1] SMP PTI CPU: 20 UID: 0 PID: 181 Comm: kworker/u96:5 Tainted: G S 6.15.0-rc1 #4 PREEMPT(voluntary) Tainted: [S]=CPU_OUT_OF_SPEC Hardware name: Dell Inc. PowerEdge R730/072T6D, BIOS 2.4.3 01/17/2017 Workqueue: bnxt_pf_wq bnxt_sp_task [bnxt_en] RIP: 0010:bnxt_re_suspend+0x45/0x1f0 [bnxt_re] Code: 8b 05 a7 3c 5b f5 48 89 44 24 18 31 c0 49 8b 5c 24 08 4d 8b 2c 24 e8 ea 06 0a f4 48 c7 c6 04 60 52 c0 48 89 df e8 1b ce f9 ff <48> 8b 83 78 0b 00 00 48 8b 80 38 03 00 00 a8 40 0f 85 b5 00 00 00 RSP: 0018:ffffa2e84084fd88 EFLAGS: 00010246 RAX: 0000000000000000 RBX: 0000000000000000 RCX: 0000000000000001 RDX: 0000000000000000 RSI: ffffffffb4b6b934 RDI: 00000000ffffffff RBP: ffffa1760954c9c0 R08: 0000000000000000 R09: c0000000ffffdfff R10: 0000000000000001 R11: ffffa2e84084fb50 R12: ffffa176031ef070 R13: ffffa17609775000 R14: ffffa17603adc180 R15: 0000000000000000 FS: 0000000000000000(0000) GS:ffffa17daa397000(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 CR2: 0000000000000b78 CR3: 00000004aaa30003 CR4: 00000000003706f0 DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 Call Trace: <TASK> bnxt_ulp_stop+0x69/0x90 [bnxt_en] bnxt_sp_task+0x678/0x920 [bnxt_en] ? __schedule+0x514/0xf50 process_scheduled_works+0x9d/0x400 worker_thread+0x11c/0x260 ? __pfx_worker_thread+0x10/0x10 kthread+0xfe/0x1e0 ? __pfx_kthread+0x10/0x10 ret_from_fork+0x2b/0x40 ? __pfx_kthread+0x10/0x10 ret_from_fork_asm+0x1a/0x30 Check the BNXT_EN_FLAG_ULP_STOPPED flag and do not proceed if the flag is already set. This will preserve the original symmetrical bnxt_ulp_stop() and bnxt_ulp_start(). Also, inside bnxt_ulp_start(), clear the BNXT_EN_FLAG_ULP_STOPPED flag after taking the mutex to avoid any race condition. And for symmetry, only proceed in bnxt_ulp_start() if the BNXT_EN_FLAG_ULP_STOPPED is set.
Analysis
In the Linux kernel, the following vulnerability has been resolved:
bnxt_en: Fix double invocation of bnxt_ulp_stop()/bnxt_ulp_start()
Before the commit under the Fixes tag below, bnxt_ulp_stop() and bnxt_ulp_start() were always invoked in pairs. After that commit, the new bnxt_ulp_restart() can be invoked after bnxt_ulp_stop() has been called. This may result in the RoCE driver's aux driver .suspend() method being invoked twice. The 2nd bnxt_re_suspend() call will crash when it dereferences a NULL pointer:
(NULL ib_device): Handle device suspend call BUG: kernel NULL pointer dereference, address: 0000000000000b78 PGD 0 P4D 0 Oops: Oops: 0000 [#1] SMP PTI CPU: 20 UID: 0 PID: 181 Comm: kworker/u96:5 Tainted: G S 6.15.0-rc1 #4 PREEMPT(voluntary) Tainted: [S]=CPU_OUT_OF_SPEC Hardware name: Dell Inc. PowerEdge R730/072T6D, BIOS 2.4.3 01/17/2017 Workqueue: bnxt_pf_wq bnxt_sp_task [bnxt_en] RIP: 0010:bnxt_re_suspend+0x45/0x1f0 [bnxt_re] Code: 8b 05 a7 3c 5b f5 48 89 44 24 18 31 c0 49 8b 5c 24 08 4d 8b 2c 24 e8 ea 06 0a f4 48 c7 c6 04 60 52 c0 48 89 df e8 1b ce f9 ff <48> 8b 83 78 0b 00 00 48 8b 80 38 03 00 00 a8 40 0f 85 b5 00 00 00 RSP: 0018:ffffa2e84084fd88 EFLAGS: 00010246 RAX: 0000000000000000 RBX: 0000000000000000 RCX: 0000000000000001 RDX: 0000000000000000 RSI: ffffffffb4b6b934 RDI: 00000000ffffffff RBP: ffffa1760954c9c0 R08: 0000000000000000 R09: c0000000ffffdfff R10: 0000000000000001 R11: ffffa2e84084fb50 R12: ffffa176031ef070 R13: ffffa17609775000 R14: ffffa17603adc180 R15: 0000000000000000 FS: 0000000000000000(0000) GS:ffffa17daa397000(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 CR2: 0000000000000b78 CR3: 00000004aaa30003 CR4: 00000000003706f0 DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 Call Trace: <TASK> bnxt_ulp_stop+0x69/0x90 [bnxt_en] bnxt_sp_task+0x678/0x920 [bnxt_en] ? __schedule+0x514/0xf50 process_scheduled_works+0x9d/0x400 worker_thread+0x11c/0x260 ? __pfx_worker_thread+0x10/0x10 kthread+0xfe/0x1e0 ? __pfx_kthread+0x10/0x10 ret_from_fork+0x2b/0x40 ? __pfx_kthread+0x10/0x10 ret_from_fork_asm+0x1a/0x30
Check the BNXT_EN_FLAG_ULP_STOPPED flag and do not proceed if the flag is already set. This will preserve the original symmetrical bnxt_ulp_stop() and bnxt_ulp_start().
Also, inside bnxt_ulp_start(), clear the BNXT_EN_FLAG_ULP_STOPPED flag after taking the mutex to avoid any race condition. And for symmetry, only proceed in bnxt_ulp_start() if the BNXT_EN_FLAG_ULP_STOPPED is set.
Technical Context
A denial of service vulnerability allows an attacker to disrupt the normal functioning of a system, making it unavailable to legitimate users.
Affected Products
Affected products: Linux Linux Kernel
Remediation
A vendor patch is available — apply it immediately. Implement rate limiting and input validation. Use timeout mechanisms for resource-intensive operations. Deploy DDoS protection where applicable.
Priority Score
Vendor Status
Ubuntu
Priority: Medium| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| xenial | not-affected | 4.8.0-39.42~16.04.1 |
| trusty | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| bionic | ignored | end of standard support |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| bionic | not-affected | 5.4.0-37.41~18.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| 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 |
| 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 |
| 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 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| focal | not-affected | 5.15.0-33.34~20.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| 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 | - |
| 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 | - |
| 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 | - |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| jammy | not-affected | 6.8.0-38.38~22.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| 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~rc3, 6.14.y |
| 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 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| trusty | not-affected | 4.4.0-13.29~14.04.1 |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| jammy | not-affected | 5.13.0-1004.4 |
| xenial | not-affected | 4.4.0-1007.12 |
| bionic | not-affected | 4.15.0-1002.2 |
| focal | not-affected | 5.4.0-1004.4 |
| trusty | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| 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 | - |
| 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 |
| 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 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| bionic | not-affected | 5.4.0-1020.20~18.04.2 |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| 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 |
| 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 |
| 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 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| focal | not-affected | 5.15.0-1015.19~20.04.1 |
| upstream | released | 6.16~rc3, 6.14.y |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| questing | DNE | - |
| 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 | - |
| 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 | - |
| 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 | - |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| jammy | not-affected | 6.8.0-1009.9~22.04.2 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| xenial | not-affected | 4.15.0-1031.33~16.04.1 |
| trusty | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| bionic | not-affected | 4.15.0-1082.92 |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| questing | DNE | - |
| 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 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| bionic | not-affected | 5.4.0-1022.22~18.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| questing | DNE | - |
| 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 |
| 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 |
| 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 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| focal | not-affected | 5.15.0-1007.8~20.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| questing | DNE | - |
| 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 | - |
| 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 | - |
| 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 | - |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| jammy | not-affected | 6.8.0-1008.8~22.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| questing | DNE | - |
| 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~rc3, 6.14.y |
| questing | DNE | - |
| Release | Status | Version |
|---|---|---|
| oracular | DNE | - |
| noble | not-affected | 6.8.0-1041.48 |
| jammy | not-affected | 5.15.0-1019.24.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| plucky | not-affected | 6.14.0-1014.14 |
| questing | needs-triage | - |
| focal | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| focal | not-affected | 5.15.0-1019.24~20.04.1.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| questing | DNE | - |
| 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 | - |
| 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 | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| noble | not-affected | 6.8.0-1013.14 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| questing | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| focal | not-affected | 5.4.0-1011.14 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| questing | DNE | - |
| 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 |
| Release | Status | Version |
|---|---|---|
| oracular | DNE | - |
| plucky | DNE | - |
| jammy | not-affected | 5.15.0-92.102+fips1 |
| trusty | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| questing | DNE | - |
| noble | not-affected | 6.8.0-38.38+fips4 |
| bionic | not-affected | 4.15.0-1011.12 |
| focal | not-affected | 5.4.0-1007.8 |
| xenial | not-affected | 4.4.0-1001.1 |
| Release | Status | Version |
|---|---|---|
| oracular | DNE | - |
| plucky | DNE | - |
| noble | not-affected | 6.8.0-1035.37+fips1 |
| jammy | not-affected | 5.15.0-1052.57+fips1 |
| trusty | DNE | - |
| questing | DNE | - |
| bionic | not-affected | 4.15.0-2000.4 |
| focal | not-affected | 5.4.0-1021.21+fips2 |
| xenial | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| oracular | DNE | - |
| plucky | DNE | - |
| jammy | not-affected | 5.15.0-1058.66+fips1 |
| trusty | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| questing | DNE | - |
| noble | not-affected | 6.8.0-1034.39+fips1 |
| bionic | not-affected | 4.15.0-1002.2 |
| focal | not-affected | 5.4.0-1022.22+fips1 |
| xenial | DNE | - |
| Release | Status | Version |
|---|---|---|
| oracular | DNE | - |
| plucky | DNE | - |
| jammy | not-affected | 5.15.0-1048.56+fips1 |
| trusty | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| questing | DNE | - |
| noble | not-affected | 6.8.0-1036.38+fips1 |
| bionic | not-affected | 4.15.0-1001.1 |
| focal | not-affected | 5.4.0-1021.21+fips1 |
| xenial | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| bionic | not-affected | 4.15.0-1071.81 |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| questing | DNE | - |
| 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 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| bionic | not-affected | 5.4.0-1021.21~18.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| questing | DNE | - |
| 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 |
| 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 |
| 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 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| focal | not-affected | 5.15.0-1006.9~20.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| questing | DNE | - |
| 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 | - |
| 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 | - |
| 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 | - |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| jammy | not-affected | 6.8.0-1010.11~22.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| questing | DNE | - |
| 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~rc3, 6.14.y |
| questing | DNE | - |
| Release | Status | Version |
|---|---|---|
| focal | ignored | end of kernel support |
| oracular | DNE | - |
| plucky | DNE | - |
| jammy | not-affected | 5.15.0-1002.2 |
| noble | not-affected | 6.8.0-1003.5 |
| trusty | DNE | - |
| xenial | ignored | end of standard support |
| bionic | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| questing | DNE | - |
| 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 |
| 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 |
| 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 | - |
| Release | Status | Version |
|---|---|---|
| focal | ignored | end of kernel support |
| oracular | DNE | - |
| plucky | DNE | - |
| jammy | not-affected | 5.15.0-1001.2 |
| noble | not-affected | 6.8.0-1001.3 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| questing | DNE | - |
| 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 |
| Release | Status | Version |
|---|---|---|
| focal | ignored | end of kernel support |
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| questing | DNE | - |
| Release | Status | Version |
|---|---|---|
| oracular | DNE | - |
| plucky | DNE | - |
| focal | not-affected | 5.4.0-1004.5 |
| jammy | not-affected | 5.15.0-1002.2 |
| noble | not-affected | 6.5.0-1009.9 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| bionic | not-affected | 5.4.0-1010.11~18.04.2 |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| focal | not-affected | 5.15.0-1034.37~20.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| jammy | not-affected | 6.8.0-1008.8~22.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| 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 | - |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| jammy | not-affected | 5.15.0-1004.6 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| focal | not-affected | 5.15.0-1003.5~20.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| focal | not-affected | 5.4.0-1001.3 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| jammy | not-affected | 5.15.0-1021.26 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| plucky | DNE | - |
| jammy | not-affected | 5.15.0-22.22 |
| noble | not-affected | 6.5.0-9.9.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| oracular | ignored | end of life, was needed |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| focal | not-affected | 5.15.0-33.34~20.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| 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 | - |
| 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 | - |
| 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 | - |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| jammy | not-affected | 6.8.0-38.38.1~22.04.2 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| 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~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| oracular | DNE | - |
| plucky | DNE | - |
| jammy | not-affected | 5.15.0-1005.5 |
| noble | not-affected | 6.8.0-1007.7 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| 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 | - |
| 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 | - |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| jammy | not-affected | 6.8.0-1008.8~22.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| noble | not-affected | 6.8.0-1009.9.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| oracular | DNE | - |
| plucky | DNE | - |
| jammy | not-affected | 5.15.0-1013.13 |
| noble | not-affected | 6.8.0-1003.3 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| focal | not-affected | 5.15.0-1009.9~20.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| jammy | not-affected | 5.15.0-1001.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| 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 |
| 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 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| bionic | not-affected | 5.4.0-1021.21~18.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| 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 |
| 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 |
| 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 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| focal | not-affected | 5.15.0-1007.9~20.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| 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 | - |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| jammy | not-affected | 6.8.0-1006.6~22.04.3 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| 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 |
| 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 |
| 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 |
| 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 |
| 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 |
| 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 | - |
| 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 | - |
| 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 | - |
| 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 | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| noble | not-affected | 6.8.0-1003.3 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| noble | ignored | superseded by linux-oem-6.14, was needed |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| 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 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| bionic | not-affected | 5.4.0-1013.13~18.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| noble | not-affected | 6.7.0-2001.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | end of kernel support |
| noble | ignored | replaced by linux-riscv-6.14 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| oracular | ignored | end of life, was needed |
| plucky | released | 6.14.0-34.34.1 |
| questing | not-affected | 6.17.0-4.4.1 |
| focal | ignored | end of standard support |
| upstream | released | 6.16~rc3, 6.14.y |
| 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 |
| 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 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| focal | not-affected | 5.15.0-1015.17~20.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| 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 | - |
| 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 | - |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| jammy | not-affected | 6.8.0-38.38.1~22.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| 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 | - |
| 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 | - |
| 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 | - |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| focal | not-affected | 5.4.0-1020.24 |
| jammy | not-affected | 5.15.0-1022.26 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | not-affected | 5.13.0-19.19 |
| noble | not-affected | 6.5.0-9.9 |
| bionic | not-affected | 4.13.0-16.19 |
| trusty | not-affected | 3.11.0-12.19 |
| xenial | not-affected | 4.4.0-2.16 |
| upstream | released | 6.16~rc3, 6.14.y |
| oracular | ignored | end of life, was needed |
| focal | not-affected | 5.4.0-9.12 |
| plucky | released | 6.14.0-34.34 |
| questing | not-affected | 6.16.0-13.13 |
| Release | Status | Version |
|---|---|---|
| jammy | not-affected | 5.13.0-1005.6 |
| noble | not-affected | 6.5.0-1008.8 |
| xenial | not-affected | 4.4.0-1001.10 |
| plucky | released | 6.14.0-1015.15 |
| bionic | not-affected | 4.15.0-1001.1 |
| upstream | released | 6.16~rc3, 6.14.y |
| oracular | ignored | end of life, was needed |
| focal | not-affected | 5.4.0-1005.5 |
| trusty | not-affected | 4.4.0-1002.2 |
| questing | not-affected | 6.16.0-1001.1 |
| Release | Status | Version |
|---|---|---|
| jammy | not-affected | 5.13.0-1006.7 |
| noble | not-affected | 6.5.0-1007.7 |
| xenial | not-affected | 4.11.0-1015.15 |
| oracular | ignored | end of life, was needed |
| focal | not-affected | 5.4.0-1006.6 |
| trusty | not-affected | 4.15.0-1023.24~14.04.1 |
| upstream | released | 6.16~rc3, 6.14.y |
| questing | not-affected | 6.16.0-1001.1 |
| plucky | released | 6.14.0-1014.14 |
| bionic | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| jammy | not-affected | 5.13.0-1005.6 |
| noble | not-affected | 6.5.0-1007.7 |
| xenial | not-affected | 4.10.0-1004.4 |
| trusty | DNE | - |
| oracular | ignored | end of life, was needed |
| focal | not-affected | 5.4.0-1005.5 |
| upstream | released | 6.16~rc3, 6.14.y |
| plucky | released | 6.14.0-1018.19 |
| questing | not-affected | 6.16.0-1001.1 |
| bionic | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| bionic | not-affected | 4.15.0-1008.10 |
| jammy | not-affected | 5.13.0-1008.10 |
| noble | not-affected | 6.5.0-1010.10 |
| xenial | not-affected | 4.15.0-1008.10~16.04.1 |
| plucky | released | 6.14.0-1015.15 |
| trusty | DNE | - |
| oracular | ignored | end of life, was needed |
| focal | not-affected | 5.4.0-1005.5 |
| questing | not-affected | 6.16.0-1001.1 |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | not-affected | 5.13.0-1008.9 |
| noble | not-affected | 6.5.0-1005.7 |
| plucky | released | 6.14.0-1016.16 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| oracular | ignored | end of life, was needed |
| focal | not-affected | 5.4.0-1007.7 |
| questing | not-affected | 6.17.0-1003.3 |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | not-affected | 5.15.0-1006.6 |
| noble | not-affected | 6.8.0-1008.19 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| oracular | ignored | end of life, was needed |
| questing | not-affected | 6.17.0-1001.2 |
| plucky | released | 6.14.0-1014.14 |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| noble | not-affected | 6.8.0-1001.6 |
| oracular | DNE | - |
| plucky | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| questing | DNE | - |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| noble | released | 6.14.0-1014.14 |
| questing | DNE | - |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| noble | released | 6.14.0-34.34.1~24.04.1 |
| questing | DNE | - |
| 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~rc3, 6.14.y |
| questing | DNE | - |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| plucky | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| noble | released | 6.14.0-1018.19~24.04.1 |
| questing | DNE | - |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| plucky | DNE | - |
| noble | not-affected | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| 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~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| plucky | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| noble | ignored | end of kernel support, was needed |
| questing | DNE | - |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| plucky | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| noble | released | 6.14.0-1014.14~24.04.1 |
| questing | DNE | - |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | not-affected | 6.8.1-1004.4~22.04.1 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| noble | released | 6.14.0-1014.14~24.04.1 |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| noble | not-affected | 6.14.0-1014.14~24.04.1 |
| 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~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| noble | not-affected | 6.8.0-1008.9 |
| plucky | not-affected | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| jammy | not-affected | 6.8.0-1046.53~22.04.1 |
| 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~rc3, 6.14.y |
| 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~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| noble | not-affected | 6.17.0-1004.4~24.04.3 |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| noble | not-affected | 6.17.0-14.14~24.04.1 |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| noble | not-affected | 6.17.0-1004.4~24.04.2 |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
| 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~rc3, 6.14.y |
| 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~rc3, 6.14.y |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| noble | needs-triage | - |
| questing | DNE | - |
| upstream | released | 6.16~rc3, 6.14.y |
Debian
| Release | Status | Fixed Version | Urgency |
|---|---|---|---|
| bullseye | not-affected | - | - |
| bullseye (security) | fixed | 5.10.251-1 | - |
| bookworm | not-affected | - | - |
| 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 | - |
Share
External POC / Exploit Code
Leaving vuln.today
EUVD-2025-20070