Answer in brief
CVE-2026-72170 records a Unknown severity vulnerability in 9p: skip nlink update in cacheless mode to fix WARN_ON. 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.
A CVSS score is not reported in the current record. 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.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=ac89b2ef9b55924bcf922251f043ba73a32d05bb <a5a682b016ef5b5384e28f6d652d47a8f8e73d37 || >=ac89b2ef9b55924bcf922251f043ba73a32d05bb <de79c3f3643841b8659a71958df7cf2a66bfd409 || >=ac89b2ef9b55924bcf922251f043ba73a32d05bb <8d610017c992de705b304d3d727a6e3a86af6149 || >=ac89b2ef9b55924bcf922251f043ba73a32d05bb <8faccac11e1369adddf5d80f4a45af93f13b2e1a || >=ac89b2ef9b55924bcf922251f043ba73a32d05bb <574aa0b4799470ac814479f1138d19efe6262255 | a5a682b016ef5b5384e28f6d652d47a8f8e73d37, de79c3f3643841b8659a71958df7cf2a66bfd409, 8d610017c992de705b304d3d727a6e3a86af6149, 8faccac11e1369adddf5d80f4a45af93f13b2e1a, 574aa0b4799470ac814479f1138d19efe6262255 |
| Linux/Linuxgeneric | 4.17 | Not reported |
Published upstream
Aug 15, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 15, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 15, 2026
In the Linux kernel, the following vulnerability has been resolved: 9p: skip nlink update in cacheless mode to fix WARN_ON v9fs_dec_count() unconditionally calls drop_nlink() on regular files, even when the inode's nlink is already zero. In cacheless mode the client refetches inode metadata from the server (the source of truth) on every operation, so by the time v9fs_remove() returns, the locally cached nlink may already reflect the post-unlink value: 1. Client initiates unlink, server processes it and sets nlink to 0 2. Client refetches inode metadata (nlink=0) before unlink returns 3. Client's v9fs_remove() completes successfully 4. Client calls v9fs_dec_count() which calls drop_nlink() on nlink=0 This race is easily triggered under heavy unlink workloads, such as stress-ng's unlink stressor, producing the following warning: WARNING: fs/inode.c:417 at drop_nlink+0x4c/0xc8 Call trace: drop_nlink+0x4c/0xc8 v9fs_remove+0x1e0/0x250 [9p] v9fs_vfs_unlink+0x20/0x38 [9p] vfs_unlink+0x13c/0x258 ... In cacheless mode the server is authoritative and the inode is on its way out, so locally adjusting nlink buys nothing. Skip v9fs_dec_count() entirely when neither CACHE_META nor CACHE_LOOSE is set, which both avoids the warning and removes a class of nlink races (two concurrent unlinkers observing nlink > 0 and both calling drop_nlink()) that an nlink == 0 guard alone would only narrow rather than close.
Quoted source text, attributed separately from HOL analysis.
Answer in brief
CVE-2026-72170 records a Unknown severity vulnerability in 9p: skip nlink update in cacheless mode to fix WARN_ON. 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.
A CVSS score is not reported in the current record. 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.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=ac89b2ef9b55924bcf922251f043ba73a32d05bb <a5a682b016ef5b5384e28f6d652d47a8f8e73d37 || >=ac89b2ef9b55924bcf922251f043ba73a32d05bb <de79c3f3643841b8659a71958df7cf2a66bfd409 || >=ac89b2ef9b55924bcf922251f043ba73a32d05bb <8d610017c992de705b304d3d727a6e3a86af6149 || >=ac89b2ef9b55924bcf922251f043ba73a32d05bb <8faccac11e1369adddf5d80f4a45af93f13b2e1a || >=ac89b2ef9b55924bcf922251f043ba73a32d05bb <574aa0b4799470ac814479f1138d19efe6262255 | a5a682b016ef5b5384e28f6d652d47a8f8e73d37, de79c3f3643841b8659a71958df7cf2a66bfd409, 8d610017c992de705b304d3d727a6e3a86af6149, 8faccac11e1369adddf5d80f4a45af93f13b2e1a, 574aa0b4799470ac814479f1138d19efe6262255 |
| Linux/Linuxgeneric | 4.17 | Not reported |
Published upstream
Aug 15, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 15, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 15, 2026
In the Linux kernel, the following vulnerability has been resolved: 9p: skip nlink update in cacheless mode to fix WARN_ON v9fs_dec_count() unconditionally calls drop_nlink() on regular files, even when the inode's nlink is already zero. In cacheless mode the client refetches inode metadata from the server (the source of truth) on every operation, so by the time v9fs_remove() returns, the locally cached nlink may already reflect the post-unlink value: 1. Client initiates unlink, server processes it and sets nlink to 0 2. Client refetches inode metadata (nlink=0) before unlink returns 3. Client's v9fs_remove() completes successfully 4. Client calls v9fs_dec_count() which calls drop_nlink() on nlink=0 This race is easily triggered under heavy unlink workloads, such as stress-ng's unlink stressor, producing the following warning: WARNING: fs/inode.c:417 at drop_nlink+0x4c/0xc8 Call trace: drop_nlink+0x4c/0xc8 v9fs_remove+0x1e0/0x250 [9p] v9fs_vfs_unlink+0x20/0x38 [9p] vfs_unlink+0x13c/0x258 ... In cacheless mode the server is authoritative and the inode is on its way out, so locally adjusting nlink buys nothing. Skip v9fs_dec_count() entirely when neither CACHE_META nor CACHE_LOOSE is set, which both avoids the warning and removes a class of nlink races (two concurrent unlinkers observing nlink > 0 and both calling drop_nlink()) that an nlink == 0 guard alone would only narrow rather than close.
Quoted source text, attributed separately from HOL analysis.