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: ext4: inline: fix len overflow in ext4_prepare_inline_data When running the following code on an ext4 filesystem with inline_data feature enabled, it will lead to the bug below. fd = open("file1", O_RDWR | O_CREAT | O_TRUNC, 0666); ftruncate(fd, 30); pwrite(fd, "a", 1, (1UL << 40) + 5UL); That happens because write_begin will succeed as when ext4_generic_write_inline_data calls ext4_prepare_inline_data, pos + len will be truncated, leading to ext4_prepare_inline_data parameter to be 6 instead of 0x10000000006. Then, later when write_end is called, we hit: BUG_ON(pos + len > EXT4_I(inode)->i_inline_size); at ext4_write_inline_data. Fix it by using a loff_t type for the len parameter in ext4_prepare_inline_data instead of an unsigned int. [ 44.545164] ------------[ cut here ]------------ [ 44.545530] kernel BUG at fs/ext4/inline.c:240! [ 44.545834] Oops: invalid opcode: 0000 [#1] SMP NOPTI [ 44.546172] CPU: 3 UID: 0 PID: 343 Comm: test Not tainted 6.15.0-rc2-00003-g9080916f4863 #45 PREEMPT(full) 112853fcebfdb93254270a7959841d2c6aa2c8bb [ 44.546523] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.3-debian-1.16.3-2 04/01/2014 [ 44.546523] RIP: 0010:ext4_write_inline_data+0xfe/0x100 [ 44.546523] Code: 3c 0e 48 83 c7 48 48 89 de 5b 41 5c 41 5d 41 5e 41 5f 5d e9 e4 fa 43 01 5b 41 5c 41 5d 41 5e 41 5f 5d c3 cc cc cc cc cc 0f 0b <0f> 0b 0f 1f 44 00 00 55 41 57 41 56 41 55 41 54 53 48 83 ec 20 49 [ 44.546523] RSP: 0018:ffffb342008b79a8 EFLAGS: 00010216 [ 44.546523] RAX: 0000000000000001 RBX: ffff9329c579c000 RCX: 0000010000000006 [ 44.546523] RDX: 000000000000003c RSI: ffffb342008b79f0 RDI: ffff9329c158e738 [ 44.546523] RBP: 0000000000000001 R08: 0000000000000001 R09: 0000000000000000 [ 44.546523] R10: 00007ffffffff000 R11: ffffffff9bd0d910 R12: 0000006210000000 [ 44.546523] R13: fffffc7e4015e700 R14: 0000010000000005 R15: ffff9329c158e738 [ 44.546523] FS: 00007f4299934740(0000) GS:ffff932a60179000(0000) knlGS:0000000000000000 [ 44.546523] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 44.546523] CR2: 00007f4299a1ec90 CR3: 0000000002886002 CR4: 0000000000770eb0 [ 44.546523] PKRU: 55555554 [ 44.546523] Call Trace: [ 44.546523] <TASK> [ 44.546523] ext4_write_inline_data_end+0x126/0x2d0 [ 44.546523] generic_perform_write+0x17e/0x270 [ 44.546523] ext4_buffered_write_iter+0xc8/0x170 [ 44.546523] vfs_write+0x2be/0x3e0 [ 44.546523] __x64_sys_pwrite64+0x6d/0xc0 [ 44.546523] do_syscall_64+0x6a/0xf0 [ 44.546523] ? __wake_up+0x89/0xb0 [ 44.546523] ? xas_find+0x72/0x1c0 [ 44.546523] ? next_uptodate_folio+0x317/0x330 [ 44.546523] ? set_pte_range+0x1a6/0x270 [ 44.546523] ? filemap_map_pages+0x6ee/0x840 [ 44.546523] ? ext4_setattr+0x2fa/0x750 [ 44.546523] ? do_pte_missing+0x128/0xf70 [ 44.546523] ? security_inode_post_setattr+0x3e/0xd0 [ 44.546523] ? ___pte_offset_map+0x19/0x100 [ 44.546523] ? handle_mm_fault+0x721/0xa10 [ 44.546523] ? do_user_addr_fault+0x197/0x730 [ 44.546523] ? do_syscall_64+0x76/0xf0 [ 44.546523] ? arch_exit_to_user_mode_prepare+0x1e/0x60 [ 44.546523] ? irqentry_exit_to_user_mode+0x79/0x90 [ 44.546523] entry_SYSCALL_64_after_hwframe+0x55/0x5d [ 44.546523] RIP: 0033:0x7f42999c6687 [ 44.546523] Code: 48 89 fa 4c 89 df e8 58 b3 00 00 8b 93 08 03 00 00 59 5e 48 83 f8 fc 74 1a 5b c3 0f 1f 84 00 00 00 00 00 48 8b 44 24 10 0f 05 <5b> c3 0f 1f 80 00 00 00 00 83 e2 39 83 fa 08 75 de e8 23 ff ff ff [ 44.546523] RSP: 002b:00007ffeae4a7930 EFLAGS: 00000202 ORIG_RAX: 0000000000000012 [ 44.546523] RAX: ffffffffffffffda RBX: 00007f4299934740 RCX: 00007f42999c6687 [ 44.546523] RDX: 0000000000000001 RSI: 000055ea6149200f RDI: 0000000000000003 [ 44.546523] RBP: 00007ffeae4a79a0 R08: 0000000000000000 R09: 0000000000000000 [ 44.546523] R10: 0000010000000005 R11: 0000000000000202 R12: 0000 ---truncated---
Analysis
In the Linux kernel, the following vulnerability has been resolved:
ext4: inline: fix len overflow in ext4_prepare_inline_data
When running the following code on an ext4 filesystem with inline_data feature enabled, it will lead to the bug below.
fd = open("file1", O_RDWR | O_CREAT | O_TRUNC, 0666); ftruncate(fd, 30); pwrite(fd, "a", 1, (1UL << 40) + 5UL);
That happens because write_begin will succeed as when ext4_generic_write_inline_data calls ext4_prepare_inline_data, pos + len will be truncated, leading to ext4_prepare_inline_data parameter to be 6 instead of 0x10000000006.
Then, later when write_end is called, we hit:
BUG_ON(pos + len > EXT4_I(inode)->i_inline_size);
at ext4_write_inline_data.
Fix it by using a loff_t type for the len parameter in ext4_prepare_inline_data instead of an unsigned int.
[ 44.545164] ------------[ cut here ]------------ [ 44.545530] kernel BUG at fs/ext4/inline.c:240! [ 44.545834] Oops: invalid opcode: 0000 [#1] SMP NOPTI [ 44.546172] CPU: 3 UID: 0 PID: 343 Comm: test Not tainted 6.15.0-rc2-00003-g9080916f4863 #45 PREEMPT(full) 112853fcebfdb93254270a7959841d2c6aa2c8bb [ 44.546523] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.3-debian-1.16.3-2 04/01/2014 [ 44.546523] RIP: 0010:ext4_write_inline_data+0xfe/0x100 [ 44.546523] Code: 3c 0e 48 83 c7 48 48 89 de 5b 41 5c 41 5d 41 5e 41 5f 5d e9 e4 fa 43 01 5b 41 5c 41 5d 41 5e 41 5f 5d c3 cc cc cc cc cc 0f 0b <0f> 0b 0f 1f 44 00 00 55 41 57 41 56 41 55 41 54 53 48 83 ec 20 49 [ 44.546523] RSP: 0018:ffffb342008b79a8 EFLAGS: 00010216 [ 44.546523] RAX: 0000000000000001 RBX: ffff9329c579c000 RCX: 0000010000000006 [ 44.546523] RDX: 000000000000003c RSI: ffffb342008b79f0 RDI: ffff9329c158e738 [ 44.546523] RBP: 0000000000000001 R08: 0000000000000001 R09: 0000000000000000 [ 44.546523] R10: 00007ffffffff000 R11: ffffffff9bd0d910 R12: 0000006210000000 [ 44.546523] R13: fffffc7e4015e700 R14: 0000010000000005 R15: ffff9329c158e738 [ 44.546523] FS: 00007f4299934740(0000) GS:ffff932a60179000(0000) knlGS:0000000000000000 [ 44.546523] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 44.546523] CR2: 00007f4299a1ec90 CR3: 0000000002886002 CR4: 0000000000770eb0 [ 44.546523] PKRU: 55555554 [ 44.546523] Call Trace: [ 44.546523] <TASK> [ 44.546523] ext4_write_inline_data_end+0x126/0x2d0 [ 44.546523] generic_perform_write+0x17e/0x270 [ 44.546523] ext4_buffered_write_iter+0xc8/0x170 [ 44.546523] vfs_write+0x2be/0x3e0 [ 44.546523] __x64_sys_pwrite64+0x6d/0xc0 [ 44.546523] do_syscall_64+0x6a/0xf0 [ 44.546523] ? __wake_up+0x89/0xb0 [ 44.546523] ? xas_find+0x72/0x1c0 [ 44.546523] ? next_uptodate_folio+0x317/0x330 [ 44.546523] ? set_pte_range+0x1a6/0x270 [ 44.546523] ? filemap_map_pages+0x6ee/0x840 [ 44.546523] ? ext4_setattr+0x2fa/0x750 [ 44.546523] ? do_pte_missing+0x128/0xf70 [ 44.546523] ? security_inode_post_setattr+0x3e/0xd0 [ 44.546523] ? ___pte_offset_map+0x19/0x100 [ 44.546523] ? handle_mm_fault+0x721/0xa10 [ 44.546523] ? do_user_addr_fault+0x197/0x730 [ 44.546523] ? do_syscall_64+0x76/0xf0 [ 44.546523] ? arch_exit_to_user_mode_prepare+0x1e/0x60 [ 44.546523] ? irqentry_exit_to_user_mode+0x79/0x90 [ 44.546523] entry_SYSCALL_64_after_hwframe+0x55/0x5d [ 44.546523] RIP: 0033:0x7f42999c6687 [ 44.546523] Code: 48 89 fa 4c 89 df e8 58 b3 00 00 8b 93 08 03 00 00 59 5e 48 83 f8 fc 74 1a 5b c3 0f 1f 84 00 00 00 00 00 48 8b 44 24 10 0f 05 <5b> c3 0f 1f 80 00 00 00 00 83 e2 39 83 fa 08 75 de e8 23 ff ff ff [ 44.546523] RSP: 002b:00007ffeae4a7930 EFLAGS: 00000202 ORIG_RAX: 0000000000000012 [ 44.546523] RAX: ffffffffffffffda RBX: 00007f4299934740 RCX: 00007f42999c6687 [ 44.546523] RDX: 0000000000000001 RSI: 000055ea6149200f RDI: 0000000000000003 [ 44.546523] RBP: 00007ffeae4a79a0 R08: 0000000000000000 R09: 0000000000000000 [ 44.546523] R10: 0000010000000005 R11: 0000000000000202 R12: 0000 ---truncated---
Technical Context
An integer overflow occurs when an arithmetic operation produces a value that exceeds the maximum (or minimum) size of the integer type used to store it. This vulnerability is classified as Integer Overflow or Wraparound (CWE-190).
Affected Products
Affected products: Linux Linux Kernel
Remediation
A vendor patch is available — apply it immediately. Use safe integer arithmetic libraries. Check for overflow conditions before operations. Use appropriately sized integer types.
Priority Score
Vendor Status
Ubuntu
Priority: Medium| 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 |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| trusty | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| xenial | needed | - |
| bionic | ignored | end of standard support |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| bionic | needed | - |
| upstream | released | 6.16~rc1, 6.8.y, 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 | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | released | 5.15.0-156.166~20.04.1 |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 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 |
|---|---|---|
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| jammy | released | 6.8.0-100.100~22.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 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~rc1, 6.8.y, 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 | ignored | end of standard support, was needed |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| trusty | DNE | - |
| jammy | released | 5.15.0-1088.93 |
| questing | DNE | - |
| bionic | needed | - |
| focal | needed | - |
| xenial | needed | - |
| upstream | released | 6.16~rc1, 6.8.y, 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 | needed | - |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 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 | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | released | 5.15.0-1092.99~20.04.1 |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| 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 | released | 6.8.0-1046.49~22.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| xenial | needed | - |
| trusty | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| bionic | needed | - |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| 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 | needed | - |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| 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 |
|---|---|---|
| focal | ignored | end of standard support |
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| upstream | ignored | superseded by linux-azure-5.15 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| questing | DNE | - |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | released | 5.15.0-1096.105~20.04.1 |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| 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 | pending | 6.8.0-1046.52~22.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| 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 | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| oracular | DNE | - |
| noble | needed | - |
| jammy | needed | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| plucky | not-affected | 6.14.0-1014.14 |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| 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 | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| 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 | pending | 6.8.0-1031.34 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| questing | DNE | - |
| focal | needed | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| bionic | ignored | end of standard support |
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| upstream | ignored | superseded by linux-azure-5.3 |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| Release | Status | Version |
|---|---|---|
| oracular | DNE | - |
| plucky | DNE | - |
| bionic | needed | - |
| focal | needed | - |
| xenial | needed | - |
| jammy | released | 5.15.0-156.166+fips1 |
| trusty | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| questing | DNE | - |
| noble | released | 6.8.0-100.100+fips1 |
| Release | Status | Version |
|---|---|---|
| oracular | DNE | - |
| plucky | DNE | - |
| noble | released | 6.8.0-1046.49+fips1 |
| bionic | needed | - |
| focal | needed | - |
| jammy | released | 5.15.0-1092.99+fips1 |
| trusty | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| xenial | DNE | - |
| Release | Status | Version |
|---|---|---|
| oracular | DNE | - |
| plucky | DNE | - |
| bionic | needed | - |
| focal | needed | - |
| jammy | released | 5.15.0-1096.105+fips1 |
| trusty | DNE | - |
| questing | DNE | - |
| noble | released | 6.8.0-1046.52+fips1 |
| xenial | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| oracular | DNE | - |
| plucky | DNE | - |
| bionic | needed | - |
| focal | needed | - |
| trusty | DNE | - |
| jammy | released | 5.15.0-1092.101+fips1 |
| questing | DNE | - |
| noble | released | 6.8.0-1047.50+fips1 |
| xenial | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| bionic | needed | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| 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 | - |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| bionic | needed | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| 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 | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | released | 5.15.0-1092.101~20.04.1 |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| 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 | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| jammy | released | 6.8.0-1047.50~22.04.2 |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| noble | ignored | superseded by linux-gcp-6.14, was needs-triage |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| questing | DNE | - |
| Release | Status | Version |
|---|---|---|
| focal | ignored | end of kernel support |
| oracular | DNE | - |
| plucky | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| noble | released | 6.8.0-1043.48 |
| trusty | DNE | - |
| xenial | ignored | end of standard support |
| bionic | DNE | - |
| jammy | released | 5.15.0-1089.95 |
| 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 | - |
| noble | released | 6.8.0-1030.33 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| jammy | released | 5.15.0-1075.83 |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| 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 | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| oracular | DNE | - |
| plucky | DNE | - |
| noble | released | 6.8.0-1044.44 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| jammy | released | 5.15.0-1086.89 |
| questing | DNE | - |
| focal | needed | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| bionic | needed | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | released | 5.15.0-1086.89~20.04.1 |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| jammy | released | 6.8.0-1044.44~22.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 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 | released | 5.15.0-1087.93 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | released | 5.15.0-1087.93~20.04.1 |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| questing | DNE | - |
| focal | needed | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | released | 5.15.0-1085.87 |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| plucky | DNE | - |
| noble | released | 6.8.0-100.100.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| oracular | ignored | end of life, was needed |
| jammy | released | 5.15.0-156.166 |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | released | 5.15.0-156.166~20.04.1 |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 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 | released | 6.8.0-100.100.1~22.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 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~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| oracular | DNE | - |
| plucky | DNE | - |
| noble | released | 6.8.0-1046.49 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | released | 5.15.0-1087.88 |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 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 | released | 6.8.0-1046.49~22.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| noble | released | 6.8.0-1046.49.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| oracular | DNE | - |
| plucky | DNE | - |
| noble | pending | 6.8.0-1017.17 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | released | 5.15.0-1045.45 |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | released | 5.15.0-1045.45~20.04.1 |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | released | 5.15.0-1034.34 |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| bionic | ignored | end of standard support |
| jammy | DNE | - |
| noble | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| upstream | ignored | superseded by linux-oracle-5.3 |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| 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 | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| bionic | needed | - |
| 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 | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | released | 5.15.0-1090.96~20.04.1 |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 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 | released | 6.8.0-1043.44~22.04.1 |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| 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 | ignored | superseded by linux-oem-6.14, was needed |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| noble | ignored | superseded by linux-oem-6.14, was needed |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 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 | needed | - |
| trusty | DNE | - |
| xenial | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| noble | released | 6.8.0-2037.38 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| jammy | ignored | end of kernel support |
| noble | ignored | replaced by linux-riscv-6.14 |
| plucky | released | 6.14.0-34.34.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| oracular | ignored | end of life, was needed |
| questing | not-affected | 6.17.0-4.4.1 |
| focal | ignored | end of standard support |
| upstream | released | 6.16~rc1, 6.8.y, 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 | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | released | 5.15.0-1087.91~20.04.1 |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 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 | released | 6.8.0-100.100~22.04.1 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 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 | needed | - |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| jammy | released | 5.15.0-1056.60 |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| noble | released | 6.8.0-100.100 |
| trusty | ignored | end of standard support, was needed |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| jammy | released | 5.15.0-156.166 |
| xenial | needed | - |
| oracular | ignored | end of life, was needed |
| plucky | released | 6.14.0-34.34 |
| questing | not-affected | 6.16.0-13.13 |
| bionic | needed | - |
| focal | needed | - |
| Release | Status | Version |
|---|---|---|
| trusty | ignored | end of standard support, was needed |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| plucky | released | 6.14.0-1015.15 |
| bionic | needed | - |
| focal | needed | - |
| xenial | needed | - |
| noble | released | 6.8.0-1046.49 |
| oracular | ignored | end of life, was needed |
| jammy | released | 5.15.0-1092.99 |
| questing | not-affected | 6.16.0-1001.1 |
| Release | Status | Version |
|---|---|---|
| trusty | ignored | end of standard support, was needed |
| plucky | released | 6.14.0-1014.14 |
| focal | needed | - |
| xenial | needed | - |
| noble | released | 6.8.0-1046.52 |
| jammy | released | 5.15.0-1096.105 |
| oracular | ignored | end of life, was needed |
| questing | not-affected | 6.16.0-1001.1 |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| bionic | ignored | end of standard support |
| Release | Status | Version |
|---|---|---|
| plucky | released | 6.14.0-1018.19 |
| noble | released | 6.8.0-1047.50 |
| trusty | DNE | - |
| oracular | ignored | end of life, was needed |
| jammy | released | 5.15.0-1092.101 |
| questing | not-affected | 6.16.0-1001.1 |
| focal | needed | - |
| xenial | needed | - |
| bionic | ignored | end of standard support |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| plucky | released | 6.14.0-1015.15 |
| noble | released | 6.8.0-1043.44 |
| trusty | DNE | - |
| oracular | ignored | end of life, was needed |
| jammy | released | 5.15.0-1090.96 |
| questing | not-affected | 6.16.0-1001.1 |
| bionic | needed | - |
| focal | needed | - |
| xenial | needed | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| plucky | released | 6.14.0-1016.16 |
| focal | needed | - |
| noble | released | 6.8.0-1047.51 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| oracular | ignored | end of life, was needed |
| jammy | released | 5.15.0-1086.89 |
| questing | not-affected | 6.17.0-1003.3 |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| plucky | released | 6.14.0-1014.14 |
| noble | released | 6.8.1-1041.42 |
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| oracular | ignored | end of life, was needed |
| jammy | released | 5.15.0-1092.101 |
| questing | not-affected | 6.17.0-1001.2 |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| noble | ignored | end of kernel support, was needed |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| noble | released | 6.14.0-1014.14 |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| oracular | DNE | - |
| plucky | DNE | - |
| noble | released | 6.14.0-34.34.1~24.04.1 |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| 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 |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| plucky | DNE | - |
| noble | released | 6.14.0-1018.19~24.04.1 |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| plucky | DNE | - |
| noble | not-affected | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 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~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| plucky | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| questing | DNE | - |
| noble | ignored | end of kernel support, was needed |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| plucky | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 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 | - |
| noble | DNE | - |
| plucky | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| jammy | released | 6.8.1-1041.42~22.04.1 |
| questing | DNE | - |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 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 | - |
| noble | not-affected | 6.14.0-1014.14~24.04.1 |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| noble | released | 6.14.0-1007.7 |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| plucky | not-affected | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| noble | released | 6.8.0-1023.24 |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| noble | not-affected | 6.17.0-1005.5 |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | needed | - |
| noble | DNE | - |
| plucky | DNE | - |
| questing | DNE | - |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| questing | DNE | - |
| noble | not-affected | 6.17.0-1005.5~24.04.2 |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| questing | DNE | - |
| noble | not-affected | 6.17.0-1004.4~24.04.3 |
| upstream | released | 6.16~rc1, 6.8.y, 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~24.04.1 |
| upstream | released | 6.16~rc1, 6.8.y, 6.14.y |
| Release | Status | Version |
|---|---|---|
| trusty | DNE | - |
| xenial | DNE | - |
| bionic | DNE | - |
| focal | DNE | - |
| jammy | DNE | - |
| questing | DNE | - |
| noble | not-affected | 6.17.0-1004.4~24.04.2 |
| upstream | released | 6.16~rc1, 6.8.y, 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~rc1, 6.8.y, 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~rc1, 6.8.y, 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~rc1, 6.8.y, 6.14.y |
Debian
| Release | Status | Fixed Version | Urgency |
|---|---|---|---|
| bullseye | fixed | 5.10.244-1 | - |
| bullseye (security) | fixed | 5.10.251-1 | - |
| bookworm | fixed | 6.1.147-1 | - |
| bookworm (security) | fixed | 6.1.164-1 | - |
| trixie | fixed | 6.12.73-1 | - |
| trixie (security) | fixed | 6.12.74-2 | - |
| forky | fixed | 6.19.6-2 | - |
| sid | fixed | 6.19.8-1 | - |
| (unstable) | fixed | 6.12.35-1 | - |
| Release | Status | Fixed Version | Urgency |
|---|---|---|---|
| bullseye (security) | fixed | 6.1.164-1~deb11u1 | - |
| bullseye | fixed | 6.1.153-1~deb11u1 | - |
Share
External POC / Exploit Code
Leaving vuln.today
EUVD-2025-20034