EUVD-2022-55278

| CVE-2022-49999 HIGH
2025-06-18 416baaa9-dc9f-4396-8d5f-8c081fb06d67
7.8
CVSS 3.1
Share

CVSS Vector

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

Lifecycle Timeline

4
Analysis Generated
Mar 14, 2026 - 22:49 vuln.today
EUVD ID Assigned
Mar 14, 2026 - 22:49 euvd
EUVD-2022-55278
Patch Released
Mar 14, 2026 - 22:49 nvd
Patch available
CVE Published
Jun 18, 2025 - 11:15 nvd
HIGH 7.8

Description

In the Linux kernel, the following vulnerability has been resolved: btrfs: fix space cache corruption and potential double allocations When testing space_cache v2 on a large set of machines, we encountered a few symptoms: 1. "unable to add free space :-17" (EEXIST) errors. 2. Missing free space info items, sometimes caught with a "missing free space info for X" error. 3. Double-accounted space: ranges that were allocated in the extent tree and also marked as free in the free space tree, ranges that were marked as allocated twice in the extent tree, or ranges that were marked as free twice in the free space tree. If the latter made it onto disk, the next reboot would hit the BUG_ON() in add_new_free_space(). 4. On some hosts with no on-disk corruption or error messages, the in-memory space cache (dumped with drgn) disagreed with the free space tree. All of these symptoms have the same underlying cause: a race between caching the free space for a block group and returning free space to the in-memory space cache for pinned extents causes us to double-add a free range to the space cache. This race exists when free space is cached from the free space tree (space_cache=v2) or the extent tree (nospace_cache, or space_cache=v1 if the cache needs to be regenerated). struct btrfs_block_group::last_byte_to_unpin and struct btrfs_block_group::progress are supposed to protect against this race, but commit d0c2f4fa555e ("btrfs: make concurrent fsyncs wait less when waiting for a transaction commit") subtly broke this by allowing multiple transactions to be unpinning extents at the same time. Specifically, the race is as follows: 1. An extent is deleted from an uncached block group in transaction A. 2. btrfs_commit_transaction() is called for transaction A. 3. btrfs_run_delayed_refs() -> __btrfs_free_extent() runs the delayed ref for the deleted extent. 4. __btrfs_free_extent() -> do_free_extent_accounting() -> add_to_free_space_tree() adds the deleted extent back to the free space tree. 5. do_free_extent_accounting() -> btrfs_update_block_group() -> btrfs_cache_block_group() queues up the block group to get cached. block_group->progress is set to block_group->start. 6. btrfs_commit_transaction() for transaction A calls switch_commit_roots(). It sets block_group->last_byte_to_unpin to block_group->progress, which is block_group->start because the block group hasn't been cached yet. 7. The caching thread gets to our block group. Since the commit roots were already switched, load_free_space_tree() sees the deleted extent as free and adds it to the space cache. It finishes caching and sets block_group->progress to U64_MAX. 8. btrfs_commit_transaction() advances transaction A to TRANS_STATE_SUPER_COMMITTED. 9. fsync calls btrfs_commit_transaction() for transaction B. Since transaction A is already in TRANS_STATE_SUPER_COMMITTED and the commit is for fsync, it advances. 10. btrfs_commit_transaction() for transaction B calls switch_commit_roots(). This time, the block group has already been cached, so it sets block_group->last_byte_to_unpin to U64_MAX. 11. btrfs_commit_transaction() for transaction A calls btrfs_finish_extent_commit(), which calls unpin_extent_range() for the deleted extent. It sees last_byte_to_unpin set to U64_MAX (by transaction B!), so it adds the deleted extent to the space cache again! This explains all of our symptoms above: * If the sequence of events is exactly as described above, when the free space is re-added in step 11, it will fail with EEXIST. * If another thread reallocates the deleted extent in between steps 7 and 11, then step 11 will silently re-add that space to the space cache as free even though it is actually allocated. Then, if that space is allocated *again*, the free space tree will be corrupted (namely, the wrong item will be deleted). * If we don't catch this free space tree corr ---truncated---

Analysis

CVE-2022-49999 is a security vulnerability (CVSS 7.8). High severity vulnerability requiring prompt remediation. Vendor patch is available.

Technical Context

CWE-787 (Out-of-bounds Write). CVSS 7.8 indicates high severity.

Affected Products

['Unspecified product']

Remediation

Apply the vendor-supplied patch immediately. Consider network segmentation to limit exposure if patching is delayed.

Priority Score

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

Vendor Status

Ubuntu

Priority: Medium
linux-hwe
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
xenial not-affected 4.8.0-39.42~16.04.1
trusty DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
bionic ignored end of standard support
linux-hwe-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
bionic not-affected 5.4.0-37.41~18.04.1
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-hwe-5.8
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-hwe-5.11
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-hwe-5.11
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-hwe-5.13
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-hwe-5.13
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-hwe-5.15
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-hwe-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
focal released 5.15.0-57.63~20.04.1
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-hwe-5.19
Release Status Version
jammy ignored superseded by linux-hwe-6.2
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-hwe-6.2
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-hwe-6.2
Release Status Version
jammy ignored superseded by linux-hwe-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-hwe-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-hwe-6.5
Release Status Version
jammy ignored superseded by linux-hwe-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-hwe-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-hwe-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy not-affected 6.8.0-38.38~22.04.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-hwe-6.11
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
noble not-affected 6.11.0-19.19~24.04.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-hwe-edge
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
xenial ignored end of standard support
linux-lts-xenial
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty not-affected 4.4.0-13.29~14.04.1
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-kvm
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
xenial not-affected 4.4.0-1007.12
bionic not-affected 4.15.0-1002.2
focal not-affected 5.4.0-1004.4
trusty DNE -
jammy released 5.15.0-1025.30
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-allwinner-5.19
Release Status Version
jammy ignored end of kernel support
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-aws-5.0
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-aws-5.3
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-aws-5.3
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-aws-5.4
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-aws-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
bionic not-affected 5.4.0-1020.20~18.04.2
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-aws-5.8
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-aws-5.11
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-aws-5.11
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-aws-5.13
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-aws-5.13
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-aws-5.15
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-aws-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
focal released 5.15.0-1027.31~20.04.1
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-aws-5.19
Release Status Version
jammy ignored superseded by linux-aws-6.2
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-aws-6.2
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-aws-6.2
Release Status Version
jammy ignored superseded by linux-aws-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-aws-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-aws-6.5
Release Status Version
jammy ignored superseded by linux-aws-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-aws-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-aws-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy not-affected 6.8.0-1009.9~22.04.2
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-aws-hwe
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
xenial not-affected 4.15.0-1031.33~16.04.1
trusty DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-azure-4.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
bionic not-affected 4.15.0-1082.92
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-azure-5.3
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-5.4
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-azure-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
bionic not-affected 5.4.0-1022.22~18.04.1
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-azure-5.8
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-5.11
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-azure-5.11
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-5.13
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-azure-5.13
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-5.15
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-azure-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
focal released 5.15.0-1030.37~20.04.1
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-azure-5.19
Release Status Version
jammy ignored superseded by linux-azure-6.2
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-6.2
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-azure-6.2
Release Status Version
jammy ignored superseded by linux-azure-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-azure-6.5
Release Status Version
jammy ignored superseded by linux-azure-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-azure-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy not-affected 6.8.0-1008.8~22.04.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-azure-6.11
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
noble not-affected 6.11.0-1008.8~24.04.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-azure-fde
Release Status Version
jammy needs-triage -
oracular DNE -
trusty DNE -
xenial DNE -
bionic DNE -
plucky not-affected 6.14.0-1014.14
noble not-affected 6.8.0-1041.48
upstream released 6.0~rc3, 5.15.65
questing not-affected 6.17.0-1003.3
focal ignored end of standard support
linux-azure-fde-5.15
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.0~rc3, 5.15.65
linux-azure-fde-5.19
Release Status Version
jammy ignored superseded by linux-azure-fde-6.2
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-fde-6.2
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-azure-fde-6.2
Release Status Version
jammy ignored replaced by linux-azure-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored replaced by linux-azure-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-azure-nvidia
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
noble not-affected 6.8.0-1013.14
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-bluefield
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
focal not-affected 5.4.0-1011.14
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-azure-edge
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-azure-5.3
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-fips
Release Status Version
oracular DNE -
plucky DNE -
bionic not-affected 4.15.0-1011.12
focal not-affected 5.4.0-1007.8
jammy not-affected 5.15.0-92.102+fips1
xenial not-affected 4.4.0-1001.1
trusty DNE -
questing DNE -
noble not-affected 6.8.0-38.38+fips4
upstream released 6.0~rc3, 5.15.65
linux-aws-fips
Release Status Version
oracular DNE -
plucky DNE -
bionic not-affected 4.15.0-2000.4
focal not-affected 5.4.0-1021.21+fips2
jammy not-affected 5.15.0-1052.57+fips1
trusty DNE -
questing DNE -
noble not-affected 6.8.0-1035.37+fips1
upstream released 6.0~rc3, 5.15.65
xenial DNE -
linux-azure-fips
Release Status Version
oracular DNE -
plucky DNE -
bionic not-affected 4.15.0-1002.2
focal not-affected 5.4.0-1022.22+fips1
jammy not-affected 5.15.0-1058.66+fips1
trusty DNE -
questing DNE -
noble not-affected 6.8.0-1034.39+fips1
upstream released 6.0~rc3, 5.15.65
xenial DNE -
linux-gcp-fips
Release Status Version
oracular DNE -
plucky DNE -
bionic not-affected 4.15.0-1001.1
focal not-affected 5.4.0-1021.21+fips1
jammy not-affected 5.15.0-1048.56+fips1
trusty DNE -
questing DNE -
noble not-affected 6.8.0-1036.38+fips1
upstream released 6.0~rc3, 5.15.65
xenial DNE -
linux-gcp-4.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
bionic not-affected 4.15.0-1071.81
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-gcp-5.3
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-gcp-5.4
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-gcp-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
bionic not-affected 5.4.0-1021.21~18.04.1
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-gcp-5.8
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-gcp-5.11
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-gcp-5.11
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-gcp-5.13
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-gcp-5.13
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-gcp-5.15
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-gcp-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
focal released 5.15.0-1027.34~20.04.1
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-gcp-5.19
Release Status Version
jammy ignored superseded by linux-gcp-6.2
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-gcp-6.2
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-gcp-6.2
Release Status Version
jammy ignored superseded by linux-gcp-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-gcp-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-gcp-6.5
Release Status Version
jammy ignored superseded by linux-gcp-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-gcp-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-gcp-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy not-affected 6.8.0-1010.11~22.04.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-gcp-6.11
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
noble not-affected 6.11.0-1006.6~24.04.2
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-gke
Release Status Version
focal ignored end of kernel support
oracular DNE -
plucky DNE -
noble not-affected 6.8.0-1003.5
trusty DNE -
xenial ignored end of standard support
bionic DNE -
jammy released 5.15.0-1024.29
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-gke-4.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-gke-5.0
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-gke-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-gke-5.15
Release Status Version
focal ignored end of kernel support
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
linux-gkeop
Release Status Version
focal ignored end of kernel support
oracular DNE -
plucky DNE -
noble not-affected 6.8.0-1001.3
trusty DNE -
xenial DNE -
bionic DNE -
jammy released 5.15.0-1012.16
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-gkeop-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-gkeop-5.15
Release Status Version
focal ignored end of kernel support
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-ibm
Release Status Version
oracular DNE -
plucky DNE -
focal not-affected 5.4.0-1004.5
noble not-affected 6.5.0-1009.9
trusty DNE -
xenial DNE -
bionic DNE -
jammy released 5.15.0-1022.25
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-ibm-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
bionic not-affected 5.4.0-1010.11~18.04.2
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-ibm-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
focal not-affected 5.15.0-1034.37~20.04.1
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-intel-5.13
Release Status Version
focal ignored end of kernel support
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
linux-intel-iotg
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy released 5.15.0-1023.28
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-intel-iotg-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
focal released 5.15.0-1023.28~20.04.1
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-iot
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
focal not-affected 5.4.0-1001.3
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-intel-iot-realtime
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy not-affected 5.15.0-1021.26
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-lowlatency
Release Status Version
plucky DNE -
noble not-affected 6.5.0-9.9.1
oracular not-affected 6.8.0-31.31.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy released 5.15.0-57.63
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-lowlatency-hwe-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
focal released 5.15.0-58.64~20.04.1
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-lowlatency-hwe-5.19
Release Status Version
jammy ignored superseded by linux-lowlatency-hwe-6.2
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-lowlatency-hwe-6.2
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-lowlatency-hwe-6.2
Release Status Version
jammy ignored superseded by linux-lowlatency-hwe-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-lowlatency-hwe-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-lowlatency-hwe-6.5
Release Status Version
jammy ignored superseded by linux-lowlatency-hwe-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-lowlatency-hwe-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-lowlatency-hwe-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy not-affected 6.8.0-38.38.1~22.04.2
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-lowlatency-hwe-6.11
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
noble not-affected 6.11.0-1011.12~24.04.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-nvidia
Release Status Version
oracular DNE -
plucky DNE -
noble not-affected 6.8.0-1007.7
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy released 5.15.0-1015.15
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-nvidia-6.2
Release Status Version
jammy ignored superseded by linux-nvidia-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-nvidia-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-nvidia-6.5
Release Status Version
jammy ignored superseded by linux-nvidia-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-nvidia-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-nvidia-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy not-affected 6.8.0-1008.8~22.04.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-nvidia-lowlatency
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
noble not-affected 6.8.0-1009.9.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-nvidia-tegra
Release Status Version
oracular DNE -
plucky DNE -
jammy not-affected 5.15.0-1013.13
noble not-affected 6.8.0-1003.3
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-nvidia-tegra-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
focal not-affected 5.15.0-1009.9~20.04.1
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-nvidia-tegra-igx
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy not-affected 5.15.0-1001.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-oracle-5.0
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oracle-5.3
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-oracle-5.3
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oracle-5.4
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-oracle-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
bionic not-affected 5.4.0-1021.21~18.04.1
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-oracle-5.8
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oracle-5.11
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-oracle-5.11
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oracle-5.13
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-oracle-5.13
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oracle-5.15
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-oracle-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
focal released 5.15.0-1027.33~20.04.1
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-oracle-6.5
Release Status Version
jammy ignored superseded by linux-oracle-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oracle-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-oracle-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy not-affected 6.8.0-1006.6~22.04.3
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-oem
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial ignored end of standard support
focal DNE -
questing DNE -
bionic ignored end of standard support
linux-oem-5.6
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oem-5.10
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-oem-5.10
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oem-5.13
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-oem-5.13
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oem-5.14
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-oem-5.14
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored replaced by linux-hwe-5.15
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-oem-5.17
Release Status Version
jammy ignored superseded by linux-oem-6.1
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oem-6.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-oem-6.0
Release Status Version
jammy ignored superseded by linux-oem-6.1
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oem-6.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-oem-6.1
Release Status Version
jammy ignored superseded by linux-oem-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oem-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-oem-6.5
Release Status Version
jammy ignored superseded by linux-oem-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-oem-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-oem-6.8
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
noble not-affected 6.8.0-1003.3
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-oem-6.11
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
noble not-affected 6.11.0-1007.7
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-oem-6.14
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
noble not-affected 6.14.0-1005.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-raspi2
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored replaced by linux-raspi
trusty DNE -
xenial ignored end of standard support
bionic ignored end of standard support
questing DNE -
focal ignored end of standard support
linux-raspi-5.4
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
bionic not-affected 5.4.0-1013.13~18.04.1
trusty DNE -
xenial DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-raspi-realtime
Release Status Version
jammy DNE -
oracular DNE -
plucky DNE -
noble not-affected 6.7.0-2001.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-riscv
Release Status Version
jammy ignored end of kernel support
oracular not-affected 6.8.0-31.31.1
plucky not-affected 6.11.0-8.8.1
trusty DNE -
xenial DNE -
bionic DNE -
noble ignored replaced by linux-riscv-6.14, was needs-triage
questing not-affected 6.14.0-13.13.2
upstream released 6.0~rc3, 5.15.65
focal ignored end of standard support
linux-riscv-5.8
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-riscv-5.11
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-riscv-5.11
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-riscv-5.13
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
focal ignored end of standard support
linux-riscv-5.15
Release Status Version
jammy DNE -
noble DNE -
oracular DNE -
plucky DNE -
focal released 5.15.0-1027.31~20.04.1
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-riscv-5.19
Release Status Version
jammy ignored end of kernel support
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-riscv-6.5
Release Status Version
jammy ignored superseded by linux-riscv-6.8
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-riscv-6.8
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-riscv-6.8
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
jammy not-affected 6.8.0-38.38.1~22.04.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-starfive-5.19
Release Status Version
jammy ignored end of kernel support
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-starfive-6.2
Release Status Version
jammy ignored superseded by linux-starfive-6.5
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored superseded by linux-starfive-6.5
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-starfive-6.5
Release Status Version
jammy ignored end of kernel support
noble DNE -
oracular DNE -
plucky DNE -
upstream ignored end of life
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
questing DNE -
linux-xilinx-zynqmp
Release Status Version
noble DNE -
oracular DNE -
plucky DNE -
focal not-affected 5.4.0-1020.24
jammy not-affected 5.15.0-1022.26
trusty DNE -
xenial DNE -
bionic DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux
Release Status Version
noble not-affected 6.5.0-9.9
oracular not-affected 6.8.0-31.31
plucky not-affected 6.11.0-8.8
upstream released 6.0~rc3, 5.15.65
bionic not-affected 4.13.0-16.19
focal not-affected 5.4.0-9.12
trusty not-affected 3.11.0-12.19
xenial not-affected 4.4.0-2.16
jammy released 5.15.0-57.63
questing not-affected 6.14.0-15.15
linux-aws
Release Status Version
noble not-affected 6.5.0-1008.8
oracular not-affected 6.8.0-1008.8
plucky not-affected 6.11.0-1004.4
xenial not-affected 4.4.0-1001.10
bionic not-affected 4.15.0-1001.1
jammy released 5.15.0-1027.31
focal not-affected 5.4.0-1005.5
trusty not-affected 4.4.0-1002.2
questing not-affected 6.14.0-1005.5
upstream released 6.0~rc3, 5.15.65
linux-azure
Release Status Version
noble not-affected 6.5.0-1007.7
oracular not-affected 6.8.0-1007.7
plucky not-affected 6.11.0-1004.4
xenial not-affected 4.11.0-1015.15
jammy released 5.15.0-1030.37
focal not-affected 5.4.0-1006.6
trusty not-affected 4.15.0-1023.24~14.04.1
questing not-affected 6.14.0-1004.4
upstream released 6.0~rc3, 5.15.65
bionic ignored end of standard support
linux-gcp
Release Status Version
noble not-affected 6.5.0-1007.7
oracular not-affected 6.8.0-1007.7
plucky not-affected 6.11.0-1003.3
xenial not-affected 4.10.0-1004.4
trusty DNE -
jammy released 5.15.0-1026.33
focal not-affected 5.4.0-1005.5
questing not-affected 6.14.0-1006.6
upstream released 6.0~rc3, 5.15.65
bionic ignored end of standard support
linux-oracle
Release Status Version
bionic not-affected 4.15.0-1008.10
noble not-affected 6.5.0-1010.10
oracular not-affected 6.8.0-1005.5
plucky not-affected 6.11.0-1006.6
xenial not-affected 4.15.0-1008.10~16.04.1
focal not-affected 5.4.0-1005.5
trusty DNE -
jammy released 5.15.0-1026.32
questing not-affected 6.14.0-1005.5
upstream released 6.0~rc3, 5.15.65
linux-raspi
Release Status Version
focal not-affected 5.4.0-1007.7
noble not-affected 6.5.0-1005.7
oracular not-affected 6.8.0-1004.4
plucky not-affected 6.11.0-1004.4
jammy released 5.15.0-1022.24
trusty DNE -
xenial DNE -
bionic DNE -
questing not-affected 6.14.0-1005.5
upstream released 6.0~rc3, 5.15.65
linux-realtime
Release Status Version
noble not-affected 6.8.0-1008.19
oracular not-affected 6.11.0-1001.1
plucky not-affected 6.11.0-1001.1
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy released 5.15.0-1029.32
questing not-affected 6.14.0-1002.2
upstream released 6.0~rc3, 5.15.65
linux-intel
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
noble not-affected 6.8.0-1001.6
oracular DNE -
plucky DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-riscv-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
oracular DNE -
plucky DNE -
noble not-affected 6.14.0-22.22.1~24.04.1
upstream released 6.0~rc3, 5.15.65
questing DNE -
linux-ibm-6.8
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
noble DNE -
oracular DNE -
plucky DNE -
jammy not-affected 6.8.0-1008.8~22.04.1
upstream released 6.0~rc3, 5.15.65
questing DNE -
linux-aws-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
noble not-affected 6.14.0-1007.7~24.04.1
upstream released 6.0~rc3, 5.15.65
questing DNE -
linux-gcp-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
noble not-affected 6.14.0-1007.7~24.04.1
plucky DNE -
upstream released 6.0~rc3, 5.15.65
questing DNE -
linux-hwe-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
noble not-affected -
plucky DNE -
upstream released 6.0~rc3, 5.15.65
questing DNE -
linux-oracle-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
noble not-affected 6.14.0-1007.7~24.04.1
plucky DNE -
upstream released 6.0~rc3, 5.15.65
questing DNE -
linux-nvidia-6.11
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
noble not-affected 6.11.0-1002.2
upstream released 6.0~rc3, 5.15.65
questing DNE -
linux-realtime-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
noble not-affected 6.14.0-1003.3~24.04.3
plucky DNE -
upstream released 6.0~rc3, 5.15.65
questing DNE -
linux-realtime-6.8
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy not-affected 6.8.1-1004.4~22.04.1
noble DNE -
plucky DNE -
upstream released 6.0~rc3, 5.15.65
questing DNE -
linux-azure-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
questing DNE -
noble not-affected 6.14.0-1012.12~24.04.1
upstream released 6.0~rc3, 5.15.65
linux-azure-fde-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
questing DNE -
noble not-affected 6.14.0-1014.14~24.04.1
upstream released 6.0~rc3, 5.15.65
linux-azure-nvidia-6.14
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
plucky DNE -
questing DNE -
noble not-affected 6.14.0-1003.3
upstream released 6.0~rc3, 5.15.65
linux-xilinx
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
noble not-affected 6.8.0-1008.9
plucky not-affected 6.14.0-1002.2
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-oem-6.17
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
noble not-affected 6.17.0-1005.5
plucky DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-azure-fde-6.8
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
noble DNE -
plucky DNE -
questing DNE -
upstream released 6.0~rc3, 5.15.65
jammy not-affected 6.8.0-1046.53~22.04.1
linux-aws-6.17
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.0~rc3, 5.15.65
linux-gcp-6.17
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
questing DNE -
noble not-affected 6.17.0-1004.4~24.04.3
upstream released 6.0~rc3, 5.15.65
linux-hwe-6.17
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
questing DNE -
noble not-affected 6.17.0-14.14~24.04.1
upstream released 6.0~rc3, 5.15.65
linux-oracle-6.17
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
questing DNE -
noble not-affected 6.17.0-1004.4~24.04.2
upstream released 6.0~rc3, 5.15.65
linux-riscv-6.17
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
questing DNE -
noble not-affected 6.17.0-14.14.1~24.04.1
upstream released 6.0~rc3, 5.15.65
linux-azure-6.17
Release Status Version
trusty DNE -
xenial DNE -
bionic DNE -
focal DNE -
jammy DNE -
noble not-affected 6.17.0-1008.8~24.04.1
questing DNE -
upstream released 6.0~rc3, 5.15.65
linux-azure-fde-6.17
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.1
upstream released 6.0~rc3, 5.15.65

Debian

linux
Release Status Fixed Version Urgency
bullseye not-affected - -
bullseye (security) fixed 5.10.251-1 -
bookworm fixed 6.1.159-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.0.2-1 -

Share

EUVD-2022-55278 vulnerability details – vuln.today

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