SEPTEMBER 19, 2026
Live Feed
Back to database
Case File

CVE-2026-80729

UNKNOWN · CVSS N/A EPSS 0.19%

Source: NVD + CISA KEV + EPSS · Published 2026-09-03 · Last synced 2026-09-19

CyberRota Analysis

AI-Generated

A vulnerability in the Linux kernel affects the handling of memory management, specifically during the splitting of folios in the huge memory subsystem. This flaw can lead to inconsistencies in memory accounting, potentially allowing a live, memory control group (memcg)-charged node to exist without proper linkage in the shadow nodes list, which may trigger warnings during memory reclamation. Linux system administrators and developers should prioritize this issue to ensure system stability and prevent potential memory management anomalies.

CVE
CVE-2026-80729
Severity
UNKNOWN
CVSS
N/A
EPSS
0.19%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: mm/huge_memory: initialise workingset state before folio split xas_try_split() adds __GFP_ACCOUNT for page-cache xa_nodes, but __folio_split() leaves the xa_state's xa_lru unset. That lets a live, memcg-charged xa_node exist without being linked into the mapping's shadow_nodes list_lru; when reclaim later walks the list_lru it trips VM_WARN_ON(!css_is_dying()). Use mapping_set_update() to install both the workingset update callback and the shadow_nodes list_lru on the xa_state.