Lifecycle Timeline
4Description
In the Linux kernel, the following vulnerability has been resolved: fuse: fix livelock in synchronous file put from fuseblk workers I observed a hang when running generic/323 against a fuseblk server. This test opens a file, initiates a lot of AIO writes to that file descriptor, and closes the file descriptor before the writes complete. Unsurprisingly, the AIO exerciser threads are mostly stuck waiting for responses from the fuseblk server: # cat /proc/372265/task/372313/stack [<0>] request_wait_answer+0x1fe/0x2a0 [fuse] [<0>] __fuse_simple_request+0xd3/0x2b0 [fuse] [<0>] fuse_do_getattr+0xfc/0x1f0 [fuse] [<0>] fuse_file_read_iter+0xbe/0x1c0 [fuse] [<0>] aio_read+0x130/0x1e0 [<0>] io_submit_one+0x542/0x860 [<0>] __x64_sys_io_submit+0x98/0x1a0 [<0>] do_syscall_64+0x37/0xf0 [<0>] entry_SYSCALL_64_after_hwframe+0x4b/0x53 But the /weird/ part is that the fuseblk server threads are waiting for responses from itself: # cat /proc/372210/task/372232/stack [<0>] request_wait_answer+0x1fe/0x2a0 [fuse] [<0>] __fuse_simple_request+0xd3/0x2b0 [fuse] [<0>] fuse_file_put+0x9a/0xd0 [fuse] [<0>] fuse_release+0x36/0x50 [fuse] [<0>] __fput+0xec/0x2b0 [<0>] task_work_run+0x55/0x90 [<0>] syscall_exit_to_user_mode+0xe9/0x100 [<0>] do_syscall_64+0x43/0xf0 [<0>] entry_SYSCALL_64_after_hwframe+0x4b/0x53 The fuseblk server is fuse2fs so there's nothing all that exciting in the server itself. So why is the fuse server calling fuse_file_put? The commit message for the fstest sheds some light on that: "By closing the file descriptor before calling io_destroy, you pretty much guarantee that the last put on the ioctx will be done in interrupt context (during I/O completion). Aha. AIO fgets a new struct file from the fd when it queues the ioctx. The completion of the FUSE_WRITE command from userspace causes the fuse server to call the AIO completion function. The completion puts the struct file, queuing a delayed fput to the fuse server task. When the fuse server task returns to userspace, it has to run the delayed fput, which in the case of a fuseblk server, it does synchronously. Sending the FUSE_RELEASE command sychronously from fuse server threads is a bad idea because a client program can initiate enough simultaneous AIOs such that all the fuse server threads end up in delayed_fput, and now there aren't any threads left to handle the queued fuse commands. Fix this by only using asynchronous fputs when closing files, and leave a comment explaining why.
Analysis
In the Linux kernel, the following vulnerability has been resolved:
fuse: fix livelock in synchronous file put from fuseblk workers
I observed a hang when running generic/323 against a fuseblk server. This test opens a file, initiates a lot of AIO writes to that file descriptor, and closes the file descriptor before the writes complete. Unsurprisingly, the AIO exerciser threads are mostly stuck waiting for responses from the fuseblk server:
[<0>] request_wait_answer+0x1fe/0x2a0 [fuse] [<0>] __fuse_simple_request+0xd3/0x2b0 [fuse] [<0>] fuse_do_getattr+0xfc/0x1f0 [fuse] [<0>] fuse_file_read_iter+0xbe/0x1c0 [fuse] [<0>] aio_read+0x130/0x1e0 [<0>] io_submit_one+0x542/0x860 [<0>] __x64_sys_io_submit+0x98/0x1a0 [<0>] do_syscall_64+0x37/0xf0 [<0>] entry_SYSCALL_64_after_hwframe+0x4b/0x53
But the /weird/ part is that the fuseblk server threads are waiting for responses from itself:
[<0>] request_wait_answer+0x1fe/0x2a0 [fuse] [<0>] __fuse_simple_request+0xd3/0x2b0 [fuse] [<0>] fuse_file_put+0x9a/0xd0 [fuse] [<0>] fuse_release+0x36/0x50 [fuse] [<0>] __fput+0xec/0x2b0 [<0>] task_work_run+0x55/0x90 [<0>] syscall_exit_to_user_mode+0xe9/0x100 [<0>] do_syscall_64+0x43/0xf0 [<0>] entry_SYSCALL_64_after_hwframe+0x4b/0x53
The fuseblk server is fuse2fs so there's nothing all that exciting in the server itself. So why is the fuse server calling fuse_file_put? The commit message for the fstest sheds some light on that:
"By closing the file descriptor before calling io_destroy, you pretty much guarantee that the last put on the ioctx will be done in interrupt context (during I/O completion).
Aha. AIO fgets a new struct file from the fd when it queues the ioctx. The completion of the FUSE_WRITE command from userspace causes the fuse server to call the AIO completion function. The completion puts the struct file, queuing a delayed fput to the fuse server task. When the fuse server task returns to userspace, it has to run the delayed fput, which in the case of a fuseblk server, it does synchronously.
Sending the FUSE_RELEASE command sychronously from fuse server threads is a bad idea because a client program can initiate enough simultaneous AIOs such that all the fuse server threads end up in delayed_fput, and now there aren't any threads left to handle the queued fuse commands.
Fix this by only using asynchronous fputs when closing files, and leave a comment explaining why.
Remediation
Monitor vendor advisories for patches. Apply mitigations such as network segmentation, access restrictions, and monitoring.
Priority Score
Vendor Status
Ubuntu
Priority: Medium| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| xenial | needed | - |
| trusty | DNE | - |
| focal | DNE | - |
| bionic | ignored | end of standard support |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| bionic | needed | - |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-hwe-5.11 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-hwe-5.13 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-hwe-5.15 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | released | 5.15.0-170.180~20.04.3 |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | superseded by linux-hwe-6.2 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-hwe-6.2 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | superseded by linux-hwe-6.5 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-hwe-6.5 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | superseded by linux-hwe-6.8 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-hwe-6.8 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | pending | 6.8.0-104.104~22.04.1 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | ignored | superseded by linux-hwe-6.14 |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-hwe-6.14 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| noble | needed | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | end of life |
| trusty | DNE | - |
| focal | DNE | - |
| bionic | ignored | end of standard support |
| xenial | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| trusty | ignored | end of standard support, was needed |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| bionic | needed | - |
| focal | needed | - |
| xenial | needed | - |
| jammy | released | 5.15.0-1092.97 |
| trusty | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | end of kernel support |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | end of life |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-aws-5.3 |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| bionic | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-aws-5.4 |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| bionic | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| bionic | needed | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-aws-5.11 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-aws-5.13 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-aws-5.15 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | released | 5.15.0-1100.107~20.04.2 |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | superseded by linux-aws-6.2 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-aws-6.2 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | superseded by linux-aws-6.5 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-aws-6.5 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | superseded by linux-aws-6.8 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-aws-6.8 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| jammy | needed | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| noble | needed | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| xenial | needed | - |
| trusty | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| bionic | needed | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-azure-5.4 |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| bionic | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| bionic | needed | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-azure-5.11 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| focal | ignored | end of standard support |
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-azure-5.13 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-azure-5.15 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| focal | pending | 5.15.0-1104.113~20.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | superseded by linux-azure-6.2 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-azure-6.2 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | superseded by linux-azure-6.5 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-azure-6.5 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | superseded by linux-azure-6.8 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-azure-6.8 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | pending | 6.8.0-1049.55~22.04.1 |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | ignored | superseded by linux-azure-6.14 |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-azure-6.14 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| noble | needed | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| focal | not-affected | 5.15.0-1019.24~20.04.1.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | superseded by linux-azure-fde-6.2 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-azure-fde-6.2 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | replaced by linux-azure-6.5 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | replaced by linux-azure-6.5 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| noble | needed | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| questing | needed | - |
| jammy | needed | - |
| noble | needed | - |
| plucky | ignored | end of life, was needs-triage |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | ignored | end of standard support |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| noble | needed | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| noble | needed | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| focal | needed | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| bionic | ignored | end of standard support |
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-azure-5.3 |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| plucky | DNE | - |
| questing | DNE | - |
| noble | pending | 6.8.0-104.104+fips1 |
| trusty | DNE | - |
| jammy | released | 5.15.0-170.180+fips1 |
| bionic | needed | - |
| focal | needed | - |
| xenial | needed | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| plucky | DNE | - |
| questing | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| jammy | released | 5.15.0-1100.107+fips1 |
| noble | pending | 6.8.0-1048.51+fips1 |
| trusty | DNE | - |
| bionic | needed | - |
| focal | needed | - |
| xenial | DNE | - |
| Release | Status | Version |
|---|---|---|
| plucky | DNE | - |
| questing | DNE | - |
| jammy | pending | 5.15.0-1104.113+fips1 |
| noble | pending | 6.8.0-1049.55+fips1 |
| trusty | DNE | - |
| bionic | needed | - |
| focal | needed | - |
| xenial | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| plucky | DNE | - |
| questing | DNE | - |
| noble | pending | 6.8.0-1050.53+fips1 |
| trusty | DNE | - |
| jammy | released | 5.15.0-1100.109+fips1 |
| bionic | needed | - |
| focal | needed | - |
| xenial | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| bionic | ignored | end of standard support |
| focal | needed | - |
| plucky | ignored | end of life, was needs-triage |
| xenial | needed | - |
| jammy | released | 5.15.0-1100.109 |
| noble | pending | 6.8.0-1050.53 |
| trusty | DNE | - |
| questing | released | 6.17.0-1007.7 |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| bionic | needed | - |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| bionic | ignored | end of standard support |
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-gcp-5.4 |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| bionic | needed | - |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| focal | ignored | end of standard support |
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-gcp-5.11 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| Release | Status | Version |
|---|---|---|
| focal | ignored | end of standard support |
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-gcp-5.13 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| Release | Status | Version |
|---|---|---|
| focal | ignored | end of standard support |
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-gcp-5.15 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| focal | released | 5.15.0-1100.109~20.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | superseded by linux-gcp-6.2 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-gcp-6.2 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | superseded by linux-gcp-6.5 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-gcp-6.5 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | superseded by linux-gcp-6.8 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-gcp-6.8 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| jammy | pending | 6.8.0-1050.53~22.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | ignored | superseded by linux-gcp-6.14 |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-gcp-6.14 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| noble | needed | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| focal | ignored | end of kernel support |
| plucky | DNE | - |
| questing | DNE | - |
| jammy | released | 5.15.0-1096.102 |
| noble | pending | 6.8.0-1046.51 |
| trusty | DNE | - |
| xenial | ignored | end of standard support |
| bionic | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| bionic | ignored | end of standard support |
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-gke-5.0 |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| bionic | ignored | end of standard support |
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | end of life |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| focal | ignored | end of kernel support |
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | end of life |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| Release | Status | Version |
|---|---|---|
| focal | ignored | end of kernel support |
| plucky | DNE | - |
| questing | DNE | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| jammy | released | 5.15.0-1083.91 |
| noble | pending | 6.8.0-1033.36 |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| bionic | ignored | end of standard support |
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | end of life |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| focal | ignored | end of kernel support |
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| plucky | DNE | - |
| questing | DNE | - |
| focal | needed | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| noble | pending | 6.8.0-1047.47 |
| jammy | released | 5.15.0-1094.97 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| bionic | needed | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| focal | released | 5.15.0-1094.97~20.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| jammy | pending | 6.8.0-1047.47~22.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| focal | ignored | end of kernel support |
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | end of life |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| jammy | released | 5.15.0-1095.101 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| focal | released | 5.15.0-1095.101~20.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| focal | needed | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| jammy | released | 5.15.0-1092.94 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| plucky | DNE | - |
| questing | DNE | - |
| noble | pending | 6.8.0-104.104.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | released | 5.15.0-170.180 |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | released | 5.15.0-170.180~20.04.1 |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | superseded by linux-lowlatency-hwe-6.2 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-lowlatency-hwe-6.2 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | superseded by linux-lowlatency-hwe-6.5 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-lowlatency-hwe-6.5 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | superseded by linux-lowlatency-hwe-6.8 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-lowlatency-hwe-6.8 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| jammy | pending | 6.8.0-104.104.1~22.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | ignored | replaced by linux-hwe-6.14 |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | replaced by linux-hwe-6.14 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| plucky | DNE | - |
| questing | DNE | - |
| jammy | released | 5.15.0-1095.96 |
| noble | pending | 6.8.0-1048.51 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | superseded by linux-nvidia-6.5 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-nvidia-6.5 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | superseded by linux-nvidia-6.8 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-nvidia-6.8 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| jammy | pending | 6.8.0-1048.51~22.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | ignored | end of kernel support |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | end of kernel support |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| noble | pending | 6.8.0-1048.51.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| plucky | DNE | - |
| questing | DNE | - |
| jammy | released | 5.15.0-1052.52 |
| noble | pending | 6.8.0-1019.19 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| focal | released | 5.15.0-1052.52~20.04.2 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| jammy | released | 5.15.0-1041.41 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| bionic | ignored | end of standard support |
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-oracle-5.3 |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-oracle-5.4 |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| bionic | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| bionic | needed | - |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-oracle-5.11 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-oracle-5.13 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-oracle-5.15 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | released | 5.15.0-1097.103~20.04.1 |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | superseded by linux-oracle-6.8 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-oracle-6.8 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| jammy | pending | 6.8.0-1045.46~22.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| noble | ignored | end of life, was needed |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| bionic | ignored | end of standard support |
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | end of life |
| trusty | DNE | - |
| xenial | ignored | end of standard support |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-oem-5.10 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-oem-5.13 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-oem-5.14 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | replaced by linux-hwe-5.15 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | superseded by linux-oem-6.1 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-oem-6.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | superseded by linux-oem-6.1 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-oem-6.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | superseded by linux-oem-6.5 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-oem-6.5 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | superseded by linux-oem-6.8 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-oem-6.8 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | ignored | superseded by linux-oem-6.14 |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-oem-6.14 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | ignored | superseded by linux-oem-6.14 |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-oem-6.14 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| noble | ignored | end of life, was needed |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | replaced by linux-raspi |
| trusty | DNE | - |
| xenial | ignored | end of standard support |
| bionic | ignored | end of standard support |
| focal | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| bionic | needed | - |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| noble | pending | 6.8.0-2039.40 |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | pending | 6.8.1-1044.45~22.04.1 |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| noble | ignored | end of life, was needed |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | end of kernel support |
| noble | ignored | replaced by linux-riscv-6.14 |
| plucky | ignored | end of life, was needs-triage |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| questing | released | 6.17.0-14.14.1 |
| focal | ignored | end of standard support |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-riscv-5.11 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-riscv-5.13 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | released | 5.15.0-1095.99~20.04.1 |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | end of kernel support |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | end of life |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | superseded by linux-riscv-6.8 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-riscv-6.8 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| jammy | pending | 6.8.0-104.104~22.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| noble | ignored | superseded by linux-riscv-6.17, was needs-triage |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | end of kernel support |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | end of life |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | superseded by linux-starfive-6.5 |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | superseded by linux-starfive-6.5 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | end of kernel support |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | ignored | end of life |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| questing | DNE | - |
| plucky | ignored | end of life, was needs-triage |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| noble | pending | 6.8.0-1025.26 |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| focal | needed | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| jammy | released | 5.15.0-1064.68 |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| bionic | needed | - |
| focal | needed | - |
| plucky | ignored | end of life, was needs-triage |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| xenial | needed | - |
| noble | pending | 6.8.0-104.104 |
| questing | released | 6.17.0-14.14 |
| jammy | released | 5.15.0-170.180 |
| trusty | ignored | end of standard support, was needed |
| Release | Status | Version |
|---|---|---|
| bionic | needed | - |
| focal | needed | - |
| plucky | ignored | end of life, was needs-triage |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| xenial | needed | - |
| jammy | released | 5.15.0-1100.107 |
| noble | pending | 6.8.0-1048.51 |
| questing | released | 6.17.0-1007.7 |
| trusty | ignored | end of standard support, was needed |
| Release | Status | Version |
|---|---|---|
| focal | needed | - |
| plucky | ignored | end of life, was needs-triage |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| xenial | needed | - |
| jammy | pending | 5.15.0-1104.113 |
| noble | pending | 6.8.0-1049.55 |
| questing | released | 6.17.0-1008.8 |
| bionic | ignored | end of standard support |
| trusty | ignored | end of standard support, was needed |
| Release | Status | Version |
|---|---|---|
| bionic | needed | - |
| focal | needed | - |
| plucky | ignored | end of life, was needs-triage |
| xenial | needed | - |
| questing | released | 6.17.0-1007.7 |
| noble | pending | 6.8.0-1045.46 |
| trusty | DNE | - |
| jammy | released | 5.15.0-1097.103 |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| focal | needed | - |
| plucky | ignored | end of life, was needs-triage |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| jammy | pending | 5.15.0-1095.98 |
| questing | released | 6.17.0-1008.8 |
| noble | pending | 6.8.0-1049.53 |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| plucky | ignored | end of life, was needs-triage |
| jammy | released | 5.15.0-1099.108 |
| noble | pending | 6.8.1-1044.45 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | released | 6.17.0-1006.7 |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| noble | released | 6.17.0-1011.11 |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | needed | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| questing | DNE | - |
| noble | released | 6.17.0-1007.7~24.04.1 |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| questing | DNE | - |
| noble | released | 6.17.0-1008.8~24.04.1 |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| 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.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| questing | DNE | - |
| noble | released | 6.17.0-1007.7~24.04.1 |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| 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.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| 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.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| noble | needed | - |
| questing | DNE | - |
| upstream | released | 6.18~rc1, 6.8.y, 6.14.y, 6.17.4 |
Debian
| Release | Status | Fixed Version | Urgency |
|---|---|---|---|
| bullseye | fixed | 5.10.247-1 | - |
| bullseye (security) | fixed | 5.10.251-1 | - |
| bookworm | fixed | 6.1.158-1 | - |
| bookworm (security) | fixed | 6.1.164-1 | - |
| trixie | fixed | 6.12.57-1 | - |
| trixie (security) | fixed | 6.12.74-2 | - |
| forky | fixed | 6.19.6-2 | - |
| sid | fixed | 6.19.8-1 | - |
| (unstable) | fixed | 6.17.6-1 | - |
Share
External POC / Exploit Code
Leaving vuln.today
EUVD-2025-201183