---
title: "CVE-2022-48652\n    | Ubuntu"
description: Ubuntu is an open source software operating system that runs from the
  desktop, to the cloud, to all your internet connected things.
url: https://ubuntu.com/security/CVE-2022-48652?format=md
keywords: index, follow
---

# CVE-2022-48652

Publication date 28 April 2024

Last updated 4 July 2026

---

Ubuntu priority

**Medium**

[Why this priority?](https://ubuntu.com/security/cves/about#priority )

## Cvss 3 Severity Score

**5.5 · Medium**

[Score breakdown](https://ubuntu.com/security/CVE-2022-48652?format=md#impact-score)

Toggle side navigation

## Description

In the Linux kernel, the following vulnerability has been resolved:
ice: Fix crash by keep old cfg when update TCs more than queues
There are problems if allocated queues less than Traffic Classes.
Commit a632b2a4c920 ("ice: ethtool: Prohibit improper channel config
for DCB") already disallow setting less queues than TCs.
Another case is if we first set less queues, and later update more TCs
config due to LLDP, ice\_vsi\_cfg\_tc() will failed but left dirty
num\_txq/rxq and tc\_cfg in vsi, that will cause invalid pointer access.
[ 95.968089] ice 0000:3b:00.1: More TCs defined than queues/rings
allocated.
[ 95.968092] ice 0000:3b:00.1: Trying to use more Rx queues (8), than
were allocated (1)!
[ 95.968093] ice 0000:3b:00.1: Failed to config TC for VSI index: 0
[ 95.969621] general protection fault: 0000 [#1] SMP NOPTI
[ 95.969705] CPU: 1 PID: 58405 Comm: lldpad Kdump: loaded Tainted: G
U W O --------- -t - 4.18.0 #1
[ 95.969867] Hardware name: O.E.M/BC11SPSCB10, BIOS 8.23 12/30/2021
[ 95.969992] RIP: 0010:devm\_kmalloc+0xa/0x60
[ 95.970052] Code: 5c ff ff ff 31 c0 5b 5d 41 5c c3 b8 f4 ff ff ff eb f4
0f 1f 40 00 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 48 89 f8 89 d1
<8b> 97 60 02 00 00 48 8d 7e 18 48 39 f7 72 3f 55 89 ce 53 48 8b 4c
[ 95.970344] RSP: 0018:ffffc9003f553888 EFLAGS: 00010206
[ 95.970425] RAX: dead000000000200 RBX: ffffea003c425b00 RCX:
00000000006080c0
[ 95.970536] RDX: 00000000006080c0 RSI: 0000000000000200 RDI:
dead000000000200
[ 95.970648] RBP: dead000000000200 R08: 00000000000463c0 R09:
ffff888ffa900000
[ 95.970760] R10: 0000000000000000 R11: 0000000000000002 R12:
ffff888ff6b40100
[ 95.970870] R13: ffff888ff6a55018 R14: 0000000000000000 R15:
ffff888ff6a55460
[ 95.970981] FS: 00007f51b7d24700(0000) GS:ffff88903ee80000(0000)
knlGS:0000000000000000
[ 95.971108] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 95.971197] CR2: 00007fac5410d710 CR3: 0000000f2c1de002 CR4:
00000000007606e0
[ 95.971309] DR0: 0000000000000000 DR1: 0000000000000000 DR2:
0000000000000000
[ 95.971419] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7:
0000000000000400
[ 95.971530] PKRU: 55555554
[ 95.971573] Call Trace:
[ 95.971622] ice\_setup\_rx\_ring+0x39/0x110 [ice]
[ 95.971695] ice\_vsi\_setup\_rx\_rings+0x54/0x90 [ice]
[ 95.971774] ice\_vsi\_open+0x25/0x120 [ice]
[ 95.971843] ice\_open\_internal+0xb8/0x1f0 [ice]
[ 95.971919] ice\_ena\_vsi+0x4f/0xd0 [ice]
[ 95.971987] ice\_dcb\_ena\_dis\_vsi.constprop.5+0x29/0x90 [ice]
[ 95.972082] ice\_pf\_dcb\_cfg+0x29a/0x380 [ice]
[ 95.972154] ice\_dcbnl\_setets+0x174/0x1b0 [ice]
[ 95.972220] dcbnl\_ieee\_set+0x89/0x230
[ 95.972279] ? dcbnl\_ieee\_del+0x150/0x150
[ 95.972341] dcb\_doit+0x124/0x1b0
[ 95.972392] rtnetlink\_rcv\_msg+0x243/0x2f0
[ 95.972457] ? dcb\_doit+0x14d/0x1b0
[ 95.972510] ? \_\_kmalloc\_node\_track\_caller+0x1d3/0x280
[ 95.972591] ? rtnl\_calcit.isra.31+0x100/0x100
[ 95.972661] netlink\_rcv\_skb+0xcf/0xf0
[ 95.972720] netlink\_unicast+0x16d/0x220
[ 95.972781] netlink\_sendmsg+0x2ba/0x3a0
[ 95.975891] sock\_sendmsg+0x4c/0x50
[ 95.979032] \_\_\_sys\_sendmsg+0x2e4/0x300
[ 95.982147] ? kmem\_cache\_alloc+0x13e/0x190
[ 95.985242] ? \_\_wake\_up\_common\_lock+0x79/0x90
[ 95.988338] ? \_\_check\_object\_size+0xac/0x1b0
[ 95.991440] ? \_copy\_to\_user+0x22/0x30
[ 95.994539] ? move\_addr\_to\_user+0xbb/0xd0
[ 95.997619] ? \_\_sys\_sendmsg+0x53/0x80
[ 96.000664] \_\_sys\_sendmsg+0x53/0x80
[ 96.003747] do\_syscall\_64+0x5b/0x1d0
[ 96.006862] entry\_SYSCALL\_64\_after\_hwframe+0x65/0xca
Only update num\_txq/rxq when passed check, and restore tc\_cfg if setup
queue map failed.

## Status

Show unmaintained releases

| Package | Ubuntu Release | Status |
| --- | --- | --- |
| linux | 24.04 LTS noble | Not affected |
| 23.10 mantic | Not affected |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Not affected |
| 18.04 LTS bionic | Not affected |
| 16.04 LTS xenial | Not affected |
| 14.04 LTS trusty | Not affected |
| linux-allwinner-5.19 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Ignored end of kernel support |
| 20.04 LTS focal | Not in release |
| linux-aws | 24.04 LTS noble | Not affected |
| 23.10 mantic | Not affected |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Not affected |
| 18.04 LTS bionic | Not affected |
| 16.04 LTS xenial | Not affected |
| 14.04 LTS trusty | Not affected |
| linux-aws-5.0 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Ignored superseded by linux-aws-5.3 |
| linux-aws-5.11 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Ignored end of standard support, was ignored [superseded by linux-aws-5.13] |
| linux-aws-5.13 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Ignored end of standard support, was ignored [superseded by linux-aws-5.15] |
| linux-aws-5.15 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not affected |
| linux-aws-5.19 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Ignored superseded by linux-aws-6.2 |
| 20.04 LTS focal | Not in release |
| linux-aws-5.3 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Ignored superseded by linux-aws-5.4 |
| linux-aws-5.4 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Not affected |
| linux-aws-5.8 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Ignored end of standard support, was ignored [superseded by linux-aws-5.11] |
| linux-aws-6.2 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Ignored superseded by linux-aws-6.5 |
| 20.04 LTS focal | Not in release |
| linux-aws-6.5 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Not in release |
| linux-aws-fips | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal  FIPS | Not affected |
| 18.04 LTS bionic  FIPS | Not affected |
| 16.04 LTS xenial | Not in release |
| 14.04 LTS trusty | Not in release |
| linux-aws-hwe | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 16.04 LTS xenial | Not affected |
| linux-azure | 24.04 LTS noble | Not affected |
| 23.10 mantic | Not affected |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Not affected |
| 18.04 LTS bionic | Ignored superseded by linux-azure-5.3 |
| 16.04 LTS xenial | Not affected |
| 14.04 LTS trusty | Not affected |
| linux-azure-4.15 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Not affected |
| linux-azure-5.11 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Ignored end of standard support, was ignored [superseded by linux-azure-5.13] |
| linux-azure-5.13 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Ignored end of standard support, was ignored [superseded by linux-azure-5.15] |
| linux-azure-5.15 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not affected |
| linux-azure-5.19 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Ignored superseded by linux-azure-6.2 |
| 20.04 LTS focal | Not in release |
| linux-azure-5.3 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Ignored superseded by linux-azure-5.4 |
| linux-azure-5.4 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Not affected |
| linux-azure-5.8 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Ignored end of standard support, was ignored [superseded by linux-azure-5.11] |
| linux-azure-6.2 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Ignored superseded by linux-azure-6.5 |
| 20.04 LTS focal | Not in release |
| linux-azure-6.5 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Not in release |
| linux-azure-edge | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Ignored superseded by linux-azure-5.3 |
| linux-azure-fde | 24.04 LTS noble | Not affected |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Ignored end of standard support, was ignored [superseded by linux-azure-fde-5.15] |
| linux-azure-fde-5.15 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not affected |
| linux-azure-fde-5.19 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Ignored superseded by linux-azure-fde-6.2 |
| 20.04 LTS focal | Not in release |
| linux-azure-fde-6.2 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Ignored replaced by linux-azure-6.5 |
| 20.04 LTS focal | Not in release |
| linux-azure-fips | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal  FIPS | Not affected |
| 18.04 LTS bionic  FIPS | Not affected |
| 16.04 LTS xenial | Not in release |
| 14.04 LTS trusty | Not in release |
| linux-bluefield | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not affected |
| linux-fips | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal  FIPS | Not affected |
| 18.04 LTS bionic  FIPS | Not affected |
| 16.04 LTS xenial  FIPS | Not affected |
| linux-gcp | 24.04 LTS noble | Not affected |
| 23.10 mantic | Not affected |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Not affected |
| 18.04 LTS bionic | Ignored superseded by linux-gcp-5.3 |
| 16.04 LTS xenial | Not affected |
| linux-gcp-4.15 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Not affected |
| linux-gcp-5.11 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Ignored end of standard support, was ignored [superseded by linux-gcp-5.13] |
| linux-gcp-5.13 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Ignored end of standard support, was ignored [superseded by linux-gcp-5.15] |
| linux-gcp-5.15 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not affected |
| linux-gcp-5.19 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Ignored superseded by linux-gcp-6.2 |
| 20.04 LTS focal | Not in release |
| linux-gcp-5.3 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Ignored superseded by linux-gcp-5.4 |
| linux-gcp-5.4 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Not affected |
| linux-gcp-5.8 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Ignored end of standard support, was ignored [superseded by linux-gcp-5.11] |
| linux-gcp-6.2 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Ignored superseded by linux-gcp-6.5 |
| 20.04 LTS focal | Not in release |
| linux-gcp-6.5 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Not in release |
| linux-gcp-fips | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal  FIPS | Not affected |
| 18.04 LTS bionic  FIPS | Not affected |
| 16.04 LTS xenial | Not in release |
| 14.04 LTS trusty | Not in release |
| linux-gke | 24.04 LTS noble | Not affected |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Ignored end of kernel support |
| linux-gke-4.15 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Ignored superseded by linux-gke-5.0 |
| linux-gke-5.15 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Ignored end of kernel support |
| linux-gke-5.4 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Ignored end of kernel support |
| linux-gkeop | 24.04 LTS noble | Not affected |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Not affected |
| linux-gkeop-5.15 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not affected |
| linux-gkeop-5.4 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Ignored end of kernel support |
| linux-hwe | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Ignored replaced by linux-hwe-5.4 |
| 16.04 LTS xenial | Not affected |
| linux-hwe-5.11 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Ignored end of standard support, was ignored [superseded by linux-hwe-5.13] |
| linux-hwe-5.13 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Ignored end of standard support, was ignored [superseded by linux-hwe-5.15] |
| linux-hwe-5.15 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not affected |
| linux-hwe-5.19 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Ignored superseded by linux-hwe-6.2 |
| 20.04 LTS focal | Not in release |
| linux-hwe-5.4 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Not affected |
| linux-hwe-5.8 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Ignored end of standard support, was ignored [superseded by linux-hwe-5.11] |
| linux-hwe-6.2 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Ignored superseded by linux-hwe-6.5 |
| 20.04 LTS focal | Not in release |
| linux-hwe-6.5 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Not in release |
| linux-hwe-edge | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Ignored superseded by linux-hwe-5.4 |
| 16.04 LTS xenial | Ignored end of ESM support, was ignored [superseded by linux-hwe] |
| linux-ibm | 24.04 LTS noble | Not affected |
| 23.10 mantic | Ignored end of kernel support |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Not affected |
| linux-ibm-5.15 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not affected |
| linux-ibm-5.4 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Not affected |
| linux-intel | 24.04 LTS noble | Not affected |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Not in release |
| 16.04 LTS xenial | Not in release |
| 14.04 LTS trusty | Not in release |
| linux-intel-5.13 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Ignored end of kernel support |
| linux-intel-iotg | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Not in release |
| linux-intel-iotg-5.15 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not affected |
| linux-iot | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not affected |
| linux-kvm | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Not affected |
| 18.04 LTS bionic | Not affected |
| 16.04 LTS xenial | Not affected |
| linux-laptop | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not affected |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| linux-lowlatency | 24.04 LTS noble | Not affected |
| 23.10 mantic | Not affected |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Not in release |
| linux-lowlatency-hwe-5.15 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not affected |
| linux-lowlatency-hwe-5.19 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Ignored superseded by linux-lowlatency-hwe-6.2 |
| 20.04 LTS focal | Not in release |
| linux-lowlatency-hwe-6.2 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Ignored superseded by linux-lowlatency-hwe-6.5 |
| 20.04 LTS focal | Not in release |
| linux-lowlatency-hwe-6.5 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Not in release |
| linux-lts-xenial | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 14.04 LTS trusty | Not affected |
| linux-nvidia | 24.04 LTS noble | Not affected |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Not in release |
| linux-nvidia-6.2 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Ignored superseded by linux-nvidia-6.5 |
| 20.04 LTS focal | Not in release |
| linux-nvidia-6.5 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Not in release |
| linux-nvidia-6.8 | 24.04 LTS noble | Not in release |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Not in release |
| 16.04 LTS xenial | Not in release |
| 14.04 LTS trusty | Not in release |
| linux-nvidia-lowlatency | 24.04 LTS noble | Not affected |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Not in release |
| 16.04 LTS xenial | Not in release |
| 14.04 LTS trusty | Not in release |
| linux-oem | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Ignored replaced by linux-hwe-5.4 |
| linux-oem-5.10 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Ignored end of standard support, was ignored [superseded by linux-oem-5.13] |
| linux-oem-5.13 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Ignored end of standard support, was ignored [superseded by linux-oem-5.14] |
| linux-oem-5.14 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Ignored end of standard support, was ignored [replaced by linux-hwe-5.15] |
| linux-oem-5.17 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Ignored superseded by linux-oem-6.1 |
| 20.04 LTS focal | Not in release |
| linux-oem-5.6 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Ignored end of standard support, was ignored [superseded by linux-oem-5.10] |
| linux-oem-6.0 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Ignored superseded by linux-oem-6.1 |
| 20.04 LTS focal | Not in release |
| linux-oem-6.1 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Ignored superseded by linux-oem-6.5 |
| 20.04 LTS focal | Not in release |
| linux-oem-6.5 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Not in release |
| linux-oem-6.8 | 24.04 LTS noble | Not affected |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Not in release |
| 16.04 LTS xenial | Not in release |
| 14.04 LTS trusty | Not in release |
| linux-oracle | 24.04 LTS noble | Not affected |
| 23.10 mantic | Not affected |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Not affected |
| 18.04 LTS bionic | Not affected |
| 16.04 LTS xenial | Not affected |
| linux-oracle-5.0 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Ignored superseded by linux-oracle-5.3 |
| linux-oracle-5.11 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Ignored end of standard support, was ignored [superseded by linux-oracle-5.13] |
| linux-oracle-5.13 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Ignored end of standard support, was ignored [superseded by linux-oracle-5.15] |
| linux-oracle-5.15 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not affected |
| linux-oracle-5.3 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Ignored superseded by linux-oracle-5.4 |
| linux-oracle-5.4 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Not affected |
| linux-oracle-5.8 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Ignored end of standard support, was ignored [superseded by linux-oracle-5.11] |
| linux-oracle-6.5 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Not in release |
| linux-raspi | 24.04 LTS noble | Not affected |
| 23.10 mantic | Not affected |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Not affected |
| linux-raspi-5.4 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| 18.04 LTS bionic | Not affected |
| linux-raspi2 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Ignored end of standard support, was ignored [replaced by linux-raspi] |
| linux-riscv | 24.04 LTS noble | Not affected |
| 23.10 mantic | Not affected |
| 22.04 LTS jammy | Ignored end of kernel support |
| 20.04 LTS focal | Ignored end of standard support, was ignored [superseded by linux-riscv-5.8] |
| linux-riscv-5.11 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Ignored end of standard support, was ignored [superseded by linux-riscv-5.13] |
| linux-riscv-5.15 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not affected |
| linux-riscv-5.19 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Ignored end of kernel support |
| 20.04 LTS focal | Not in release |
| linux-riscv-5.8 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Ignored end of standard support, was ignored [superseded by linux-riscv-5.11] |
| linux-riscv-6.5 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Not in release |
| linux-starfive | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not affected |
| 22.04 LTS jammy | Not in release |
| 20.04 LTS focal | Not in release |
| linux-starfive-5.19 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Ignored end of kernel support |
| 20.04 LTS focal | Not in release |
| linux-starfive-6.2 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Ignored superseded by linux-starfive-6.5 |
| 20.04 LTS focal | Not in release |
| linux-starfive-6.5 | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Not in release |
| linux-xilinx-zynqmp | 24.04 LTS noble | Not in release |
| 23.10 mantic | Not in release |
| 22.04 LTS jammy | Not affected |
| 20.04 LTS focal | Not affected |

---

* [How can I get the fixes?](https://ubuntu.com/security/cves/about#security)
* [What do statuses mean?](https://ubuntu.com/security/cves/about#statuses)
* [Patch details](https://ubuntu.com/security/CVE-2022-48652?format=md#patch-details)

### Patch details

For informational purposes only. We recommend not to cherry-pick updates. [How can I get the fixes?](https://ubuntu.com/security/cves/about#security)

| Package | Patch details |
| --- | --- |
| linux | * Introduced by   [a632b2a](https://git.kernel.org/linus/a632b2a4c920ce5af29410fb091f7ee6d2e77dc6),   fixed by   [a509702](https://git.kernel.org/linus/a509702cac95a8b450228a037c8542f57e538e5b) |

## Severity score breakdown

CVSS version:
CVSS v3.0

**Base score**

5.5 · Medium

* Base metrics

  | Parameter | Value |
  | --- | --- |
  | Attack vector | Local |
  | Attack complexity | Low |
  | Privileges required | Low |
  | User interaction | None |
  | Scope | Unchanged |
  | Confidentiality impact | None |
  | Integrity impact | None |
  | Availability impact | High |
* Scores

  | Parameter | Value |
  | --- | --- |
  | Base score | 5.5 · Medium |
  | Exploitability score | - |
  | Impact score | - |

**Vector:** CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H

## References

* [MITRE](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-48652)
* [NVD](https://nvd.nist.gov/vuln/detail/CVE-2022-48652)
* [Launchpad](https://launchpad.net/bugs/cve/CVE-2022-48652)
* [Debian](https://security-tracker.debian.org/tracker/CVE-2022-48652)

### Other references

* <https://www.cve.org/CVERecord?id=CVE-2022-48652>
* <https://git.kernel.org/linus/a509702cac95a8b450228a037c8542f57e538e5b (6.0-rc7)>
* <https://git.kernel.org/stable/c/7c945e5b4787db47d728120b56c934ba05f99864>
* <https://git.kernel.org/stable/c/a509702cac95a8b450228a037c8542f57e538e5b>
