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

  scsi: qla2xxx: Skip vport under deletion in report ID acquisition

  qla24xx_report_id_acquisition() format-1 handling walks ha->vp_list under
  vport_slock, takes a vref_c…
summary: |-
  In the Linux kernel, the following vulnerability has been resolved:

  scsi: qla2xxx: Skip vport under deletion in report ID acquisition

  qla24xx_report_id_acquisition() format-1 handling walks ha->vp_list under
  vport_slock, takes a vref_c…
severity: high
cvss: 7.5
cvssVector: 'CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H'
vendor: Linux
product: Linux
affected:
  - >-
    Linux >= 41dc529a4602ac737020f423f84686a81de38e6d <
    d61e8de98c5a52978fb1edd95fe4dde3131b280e
  - >-
    Linux >= 41dc529a4602ac737020f423f84686a81de38e6d <
    7a83979d92782f83c90888ebe19bdc9420521940
  - >-
    Linux >= 41dc529a4602ac737020f423f84686a81de38e6d <
    23582731afa35031c94fadb71a4f3b4afd094649
  - Linux 4.11
published: '2026-09-25'
updated: '2026-09-25'
sourceUpdated: '2026-09-25T15:17:58.300'
source: NVD
sourceUrl: 'https://nvd.nist.gov/vuln/detail/CVE-2026-97531'
references:
  - url: 'https://git.kernel.org/stable/c/23582731afa35031c94fadb71a4f3b4afd094649'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/7a83979d92782f83c90888ebe19bdc9420521940'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/d61e8de98c5a52978fb1edd95fe4dde3131b280e'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
tags:
  - nvd
  - cve.org
ingestedAt: '2026-09-25T11:06:38.924Z'
---

## Overview

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

scsi: qla2xxx: Skip vport under deletion in report ID acquisition

qla24xx_report_id_acquisition() format-1 handling walks ha->vp_list under
vport_slock, takes a vref_count on the matching vport and calls
qla_update_host_map() to register its port id.

A vport teardown via qla24xx_vport_delete() sets VPORT_DELETE, then
qla24xx_disable_vp() removes the vport from the host_map btree and zeroes
vha->d_id (RESET_AL_PA). The vport is only unlinked from vp_list later,
in qla24xx_deallocate_vp_id(), which clears vp_map[idx] (RESET_VP_IDX)
but does not touch host_map. In the window in between, report ID
acquisition can still find the vport on vp_list and call
qla_update_host_map(); with d_id already zeroed it takes the
btree_insert32() path and re-inserts the dying vport into host_map.
Nothing cleans that entry afterwards, so once scsi_host_put() frees the
vha a later host_map lookup dereferences freed memory.

Skip a vport that has VPORT_DELETE set before taking the reference, so it
is neither re-registered nor scheduled for DPC re-registration. This
mirrors the existing guard in qla2x00_alert_all_vps().

## Remediation

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