---
id: CVE-2026-89929
title: |-
  In the Linux kernel, the following vulnerability has been resolved:

  KVM: nVM: Ensure INVVPID is emulated on the correct physical CPU

  When emulating INVVPID, KVM executes INVVPID on the physical CPU using
  vpid02 (instead of the L1 assig…
summary: |-
  In the Linux kernel, the following vulnerability has been resolved:

  KVM: nVM: Ensure INVVPID is emulated on the correct physical CPU

  When emulating INVVPID, KVM executes INVVPID on the physical CPU using
  vpid02 (instead of the L1 assig…
severity: high
cvss: 8.8
cvssVector: 'CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H'
vendor: Linux
product: Linux
affected:
  - >-
    Linux >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 <
    d03e721801ac54b9fdf05668aa0c069f07913b68
  - >-
    Linux >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 <
    27bdeb5fd19046ffba9ff234e92fe553eb2efb30
  - >-
    Linux >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 <
    9941850e8adf164d005dbd3774c4b79e91a3cb8e
  - >-
    Linux >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 <
    6d00e67326d831e6e610933a3800712f4ffe6ec1
  - Linux < 6.12.110
  - Linux < 6.18.51
  - Linux < 7.2.5
  - Linux (all versions)
published: '2026-09-16'
updated: '2026-09-17'
sourceUpdated: '2026-09-17T10:17:04.940'
source: NVD
sourceUrl: 'https://nvd.nist.gov/vuln/detail/CVE-2026-89929'
references:
  - url: 'https://git.kernel.org/stable/c/27bdeb5fd19046ffba9ff234e92fe553eb2efb30'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/6d00e67326d831e6e610933a3800712f4ffe6ec1'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/9941850e8adf164d005dbd3774c4b79e91a3cb8e'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/d03e721801ac54b9fdf05668aa0c069f07913b68'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
tags:
  - nvd
  - cve.org
ingestedAt: '2026-09-16T10:53:53.970Z'
epss: 0.00163
epssPercentile: 0.05966
---

## Overview

In the Linux kernel, the following vulnerability has been resolved:

KVM: nVM: Ensure INVVPID is emulated on the correct physical CPU

When emulating INVVPID, KVM executes INVVPID on the physical CPU using
vpid02 (instead of the L1 assigned VPID), after doing some validations
on the operands. However, it is possible that the physical CPU KVM
executes INVVPID on is different from the CPU L2 is running on.

For example, in the following scenario:
- L2 runs on CPU #1 and exits to L1 (vmx->nested.vmcs02.cpu=1)
- L1 migrates to CPU #2 and executes INVVPID
- KVM executes INVVPID on CPU #2
- L1 migrates back to CPU #1 and runs L2 (vmx->nested.vmcs02.cpu=1)

The TLB entries on CPU #1 are never invalidated, because INVVPID was
executed on CPU #2, and vmcs02 never ran on a different pCPU (i.e.
vmx_vcpu_load_vmcs() will *not* request KVM_REQ_TLB_FLUSH).

Ensure that INVVPID is being executed on the same pCPU that L2 last ran
on, and if not, fallback to clearing last_vpid=0 to trigger a full VPID
flush on the next nested VM-Enter (as KVM will detect L1 using a
different VPID for L2). If L2 ends up running on a different pCPU, KVM
will flush the TLB anyway through vmx_vcpu_load_vmcs().

## Remediation

Refer to the linked advisories for vendor-supplied fixes and affected version ranges.
