SEPTEMBER 7, 2026
Live Feed
Back to database
Case File

CVE-2026-64062

UNKNOWN · CVSS N/A EPSS 0.17%

Source: NVD + CISA KEV + EPSS · Published 2026-07-19 · Last synced 2026-08-18

CyberRota Analysis

AI-Generated

The vulnerability in the Linux kernel affects the netfs subsystem, specifically in the write-through mode, where improper handling of folios can lead to potential deadlocks during concurrent read and write operations. This issue could disrupt data integrity and system stability, particularly in environments with high file I/O operations. System administrators and developers using affected Linux distributions should prioritize addressing this vulnerability to prevent possible system hangs or data loss.

CVE
CVE-2026-64062
Severity
UNKNOWN
CVSS
N/A
EPSS
0.17%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: netfs: Fix potential deadlock in write-through mode Fix netfs_advance_writethrough() to always unlock the supplied folio and to mark it dirty if it isn't yet written to the end. Unfortunately, it can't be marked for writeback until the folio is done with as that may cause a deadlock against mmapped reads and writes. Even though it has been marked dirty, premature writeback can't occur as the caller is holding both inode->i_rwsem (which will prevent concurrent truncation, fallocation, DIO and other writes) and ictx->wb_lock (which will cause flushing to wait and writeback to skip or wait). Note that this may be easier to deal with once the queuing of folios is split from the generation of subrequests.