Import Source
https://github.com/microsoft/AzureLinuxVulnerabilityData/blob/main/osv/AZL-97791.json
JSON Data
https://api.osv.dev/v1/vulns/AZL-97791
Upstream
Published
2026-08-26T15:16:54Z
Modified
2026-08-28T17:48:15.584193885Z
Summary
CVE-2026-74754 affecting package kernel 6.6.150.1-1
Details

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

scsi: core: pair EH runtime PM get and put

shost->ehnoresume is currently consulted twice in one error handling iteration: once before scsiautopmgethost() and once again before scsiautopmput_host().

That is racy when a PM-triggered error path flips shost->eh_noresume while the SCSI EH thread is still running.

The problem flow looks like this: PM path ufshcdsetdevpwrmode() shost->ehnoresume = 1 ufshcdexecutestartstop <-- trigger EH ... shost->eh_noresume = 0

EH path scsierrorhandler() if (!shost->ehnoresume) scsiautopmgethost() <-- skipped ... if (!shost->ehnoresume) scsiautopmputhost() <-- executed later

In that case one EH iteration can skip autoresume on entry and still drop a runtime PM reference on exit. That leaves an unmatched runtime PM put and can trigger a runtime PM usage count underflow.

Fix this by making ehnoresume a regular bool so it can be accessed with READONCE() and WRITE_ONCE(). Snapshot it once per EH iteration and use that snapshot for both runtime PM get and put decisions.

References

Affected packages

Azure Linux:3 / kernel

Package

Name
kernel
Purl
pkg:rpm/azure-linux/kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0Unknown introduced version / All previous versions are affected
Last affected
6.6.150.1-1

Database specific

source
"https://github.com/microsoft/AzureLinuxVulnerabilityData/blob/main/osv/AZL-97791.json"