PatchSiren

PatchSiren cyber security CVE debrief

CVE-2026-72132 Linux CVE debrief

The Linux kernel vulnerability, CVE-2026-72132, involves incorrect writeback accounting for unstable NFS writes. This issue arises from the nfs_folio_mark_unstable() and nfs_folio_clear_commit() functions charging and uncharging NR_WRITEBACK/WB_WRITEBACK by folio_nr_pages(folio) once per request added to or removed from a commit list. The problem is that this approach is correct only when a folio has a single associated request. When a folio is split into multiple sub-folio requests, each request independently charges the whole folio's page count, leading to inflated accounting. For instance, a 2 MiB folio split into 512 4 KiB requests can charge up to 512 times its real size. This can push global dirty+writeback accounting past the system's dirty threshold, forcing every buffered writer on the host into the hard-throttle path. The proposed fix is to charge each request only for the pages it actually covers. Linux kernel users, particularly those with NFS deployments, should be aware of this vulnerability and take necessary precautions. They should verify and apply available updates, review system configurations for NFS usage, and monitor system writeback accounting. Additionally, they should ensure that their systems are properly configured and that they have adequate monitoring and detection capabilities in place.

Vendor
Linux
Product
Unknown
CVSS
Unknown
CISA KEV
Not listed in stored evidence
Original CVE published
2026-08-15
Original CVE updated
2026-08-15
Advisory published
2026-08-15
Advisory updated
2026-08-15

Who should care

Linux kernel users, particularly those with NFS deployments, system administrators, and security teams should be aware of this vulnerability. They should take necessary precautions to prevent potential writeback accounting issues. This includes verifying and applying available updates, reviewing system configurations for NFS usage, and monitoring system writeback accounting. Additionally, they should ensure that their systems are properly configured and that they have adequate monitoring and detection capabilities in place.

Technical summary

The Linux kernel vulnerability involves incorrect writeback accounting for unstable NFS writes. The nfs_folio_mark_unstable() and nfs_folio_clear_commit() functions charge and uncharge NR_WRITEBACK/WB_WRITEBACK by folio_nr_pages(folio) once per request added to or removed from a commit list. This can lead to inflated accounting when a folio has multiple associated requests. Charge each request only for the pages it actually covers. This change aims to correct the accounting issue and prevent potential writeback accounting problems.

Defensive priority

Linux kernel users should verify and apply available updates to prevent potential writeback accounting issues.

Recommended defensive actions

  • Verify and apply available Linux kernel updates
  • Review system configurations for NFS usage
  • Monitor system writeback accounting
  • Confirm whether affected product deployments exist in managed environments and assign an owner for follow-up
  • Review the supplied official advisory or CVE record to validate affected scope, severity, and vendor guidance
  • Plan vendor-supported updates or mitigations through normal change control where exposure is confirmed
  • Check relevant monitoring, detection, and logs for exposed assets that need extra review

Evidence notes

The Linux kernel vulnerability involves incorrect writeback accounting for unstable NFS writes. Charge each request only for the pages it actually covers. Limited information available; verify with official records. Additional details may be required to fully understand the vulnerability and its potential impact. The patch aims to correct the accounting issue and prevent potential writeback accounting problems. This change is crucial for systems using NFS, as it can prevent inflated accounting and the associated performance issues. Users should review the official advisory and CVE record for more information.

Official resources

AI-assisted PatchSiren debrief based on the supplied source corpus. The CVE record was published on 2026-08-15T06:21:30.657Z and has not been modified since then.