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

ext2: Fix lost inode updates for IS_SYNC inodes

ext2_setsize() and ext2_xattr_set2() had a construct like:

if (IS_SYNC(inode)) {
sync_inode_metadata(inode, 1);
} else {
mark_inode_dirty(inode);
}

which leads to lost inode updates for IS_SYNC inodes because
sync_inode_metadata() does anything only if the inode is already dirty
and hence inode updates may be simply lost. Fix the problem by
unconditionally marking the inode dirty and *then* call
sync_inode_metadata().
Published: 2026-09-11
Score: 8.8 High
EPSS: < 1% Very Low
KEV: No
Impact: Data Integrity / Possible Data Loss due to lost inode updates
Action: Immediate Patch
AI Analysis

Impact

to inode metadata may simply vanish from the filesystem. If critical metadata is omitted, files or directories can become corrupted, and the system may experience inconsistent state or silent data loss. The flaw is a classic data consistency bug, classified as CWE‑821.

Affected Systems

All Linux kernel installations that use the ext2 filesystem are impacted. The patch applies to any kernel that includes the ext2 module any current kernel build that is vulnerable.

Risk and Exploitability

The CVSS score of 6.1 indicates a moderate severity. Because the code path is in the kernel, exploitation requires local access and requires the ability to trigger filesystem operations that write to an IS_SYNC inode. The EPSS score is < 1% and the vulnerability is not listed in CISA KEV, implying no widespread exploitation seen yet. Based on the description, the likely attack vector is local with user or privileged context. The risk is that an attacker can exploit this vulnerability to corrupt filesystem metadata, leading to data loss or denial of service for the affected system.

Generated by OpenCVE AI on September 13, 2026 at 04:35 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Update the Linux kernel to the latest stable version that contains the ext2 patch. This is the only CVE‑specific fix provided by the vendor.
  • After applying the update, reboot the system to load the patched kernel and ensure the ext2 modules are re‑initialized.
  • If a kernel update cannot be applied immediately, consider migrating critical data off of ext2 filesystems or disabling the IS_SYNC feature for those inodes to prevent loss of metadata updates.

Generated by OpenCVE AI on September 13, 2026 at 04:35 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Sun, 13 Sep 2026 06:45:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

{'score': 6.1, 'vector': 'CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:L'}

cvssV3_1

{'score': 8.8, 'vector': 'CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H'}


Sat, 12 Sep 2026 00:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-821
References
Metrics threat_severity

None

cvssV3_1

{'score': 6.1, 'vector': 'CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:L'}

threat_severity

Moderate


Fri, 11 Sep 2026 23:45:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: ext2: Fix lost inode updates for IS_SYNC inodes ext2_setsize() and ext2_xattr_set2() had a construct like: if (IS_SYNC(inode)) { sync_inode_metadata(inode, 1); } else { mark_inode_dirty(inode); } which leads to lost inode updates for IS_SYNC inodes because sync_inode_metadata() does anything only if the inode is already dirty and hence inode updates may be simply lost. Fix the problem by unconditionally marking the inode dirty and *then* call sync_inode_metadata().
Title ext2: Fix lost inode updates for IS_SYNC inodes
First Time appeared Linux
Linux linux Kernel
CPEs cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
Vendors & Products Linux
Linux linux Kernel
References

Subscriptions

Linux Linux Kernel
cve-icon MITRE

Status: PUBLISHED

Assigner: Linux

Published:

Updated: 2026-09-13T06:31:34.222Z

Reserved: 2026-09-11T19:38:34.732Z

Link: CVE-2026-89601

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-09-11T20:19:44.993

Modified: 2026-09-13T07:17:25.520

Link: CVE-2026-89601

cve-icon Redhat

Severity : Moderate

Publid Date: 2026-09-11T19:45:04Z

Links: CVE-2026-89601 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-09-13T04:45:18Z

Weaknesses
  • CWE-821

    Incorrect Synchronization