Answer in brief
CVE-2026-64205 records a Medium severity (CVSS 5.5) vulnerability in i2c: i801: fix hardware state machine corruption in error path. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
CVSS is 5.5. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Product | Affected versions | Fixed versions |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | Not reported | Not reported |
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=1f760b87e54cf56a25ab68f8dc625e339f6e46d5 <2ef69871b313aa0f02182795f5e0f5aa455f203c || >=1f760b87e54cf56a25ab68f8dc625e339f6e46d5 <ef5a347532932f58748dad485c15039f5168c377 || >=1f760b87e54cf56a25ab68f8dc625e339f6e46d5 <bb5133a7d5f3fe5c387770e25f2e00e682ce11ed || >=1f760b87e54cf56a25ab68f8dc625e339f6e46d5 <00904687b9c5527d569d9a1ca72119823e735a61 || >=1f760b87e54cf56a25ab68f8dc625e339f6e46d5 <10dd1a736d557e310a77117832874729a0175d57 | 2ef69871b313aa0f02182795f5e0f5aa455f203c, ef5a347532932f58748dad485c15039f5168c377, bb5133a7d5f3fe5c387770e25f2e00e682ce11ed, 00904687b9c5527d569d9a1ca72119823e735a61, 10dd1a736d557e310a77117832874729a0175d57 |
| Linux/Linuxgeneric | 6.3 | Not reported |
Published upstream
Jul 20, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 17, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 3, 2026
In the Linux kernel, the following vulnerability has been resolved: i2c: i801: fix hardware state machine corruption in error path A severe livelock and subsequent Hung Task panic were observed in the i2c-i801 driver during concurrent Fuzzing. The crash is caused by an unconditional hardware register cleanup in the error handling path of i801_access(). When i801_check_pre() fails (e.g., returning -EBUSY because the SMBus controller is actively used by BIOS/ACPI), the kernel does not actually acquire the hardware ownership. However, the code jumps to the 'out' label and executes: iowrite8(SMBHSTSTS_INUSE_STS | STATUS_FLAGS, SMBHSTSTS(priv)); This forcefully clears the INUSE_STS lock and resets the hardware status flags without owning the controller. Doing so interrupts ongoing BIOS/ACPI transactions and totally corrupts the SMBus hardware state machine. Consequently, all subsequent i801_access() calls fail at the pre-check stage, triggering an endless stream of "SMBus is busy, can't use it!" error logs. Over a slow serial console, this printk flood monopolizes the CPU (Console Livelock), starving other processes trying to acquire the mmap_lock down_read semaphore, ultimately triggering the hung task watchdog. Fix this by moving the 'out' label below the hardware register cleanup. If i801_check_pre() fails, we safely bypass the iowrite8() and only release the software locks (pm_runtime and mutex), strictly adhering to the rule of not releasing resources that were never acquired.
Quoted source text, attributed separately from HOL analysis.
Answer in brief
CVE-2026-64205 records a Medium severity (CVSS 5.5) vulnerability in i2c: i801: fix hardware state machine corruption in error path. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
CVSS is 5.5. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Product | Affected versions | Fixed versions |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | Not reported | Not reported |
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=1f760b87e54cf56a25ab68f8dc625e339f6e46d5 <2ef69871b313aa0f02182795f5e0f5aa455f203c || >=1f760b87e54cf56a25ab68f8dc625e339f6e46d5 <ef5a347532932f58748dad485c15039f5168c377 || >=1f760b87e54cf56a25ab68f8dc625e339f6e46d5 <bb5133a7d5f3fe5c387770e25f2e00e682ce11ed || >=1f760b87e54cf56a25ab68f8dc625e339f6e46d5 <00904687b9c5527d569d9a1ca72119823e735a61 || >=1f760b87e54cf56a25ab68f8dc625e339f6e46d5 <10dd1a736d557e310a77117832874729a0175d57 | 2ef69871b313aa0f02182795f5e0f5aa455f203c, ef5a347532932f58748dad485c15039f5168c377, bb5133a7d5f3fe5c387770e25f2e00e682ce11ed, 00904687b9c5527d569d9a1ca72119823e735a61, 10dd1a736d557e310a77117832874729a0175d57 |
| Linux/Linuxgeneric | 6.3 | Not reported |
Published upstream
Jul 20, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 17, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 3, 2026
In the Linux kernel, the following vulnerability has been resolved: i2c: i801: fix hardware state machine corruption in error path A severe livelock and subsequent Hung Task panic were observed in the i2c-i801 driver during concurrent Fuzzing. The crash is caused by an unconditional hardware register cleanup in the error handling path of i801_access(). When i801_check_pre() fails (e.g., returning -EBUSY because the SMBus controller is actively used by BIOS/ACPI), the kernel does not actually acquire the hardware ownership. However, the code jumps to the 'out' label and executes: iowrite8(SMBHSTSTS_INUSE_STS | STATUS_FLAGS, SMBHSTSTS(priv)); This forcefully clears the INUSE_STS lock and resets the hardware status flags without owning the controller. Doing so interrupts ongoing BIOS/ACPI transactions and totally corrupts the SMBus hardware state machine. Consequently, all subsequent i801_access() calls fail at the pre-check stage, triggering an endless stream of "SMBus is busy, can't use it!" error logs. Over a slow serial console, this printk flood monopolizes the CPU (Console Livelock), starving other processes trying to acquire the mmap_lock down_read semaphore, ultimately triggering the hung task watchdog. Fix this by moving the 'out' label below the hardware register cleanup. If i801_check_pre() fails, we safely bypass the iowrite8() and only release the software locks (pm_runtime and mutex), strictly adhering to the rule of not releasing resources that were never acquired.
Quoted source text, attributed separately from HOL analysis.