PatchSiren

PatchSiren cyber security CVE debrief

CVE-2026-72179 Linux CVE debrief

A vulnerability has been identified in the Linux kernel, specifically in the cacheinfo subsystem. The issue arises from a node reference leak in the populate_cache_leaves function for the RISC-V architecture. This leak occurs when the loop that populates cache leaves terminates naturally without dropping the reference to the last valid node. The fix involves changing the final of_node_put(np) to of_node_put(prev) to ensure the reference to the previous node is properly dropped.

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 developers and maintainers, RISC-V architecture users, and organizations using Linux-based systems should be aware of this vulnerability and take necessary actions to apply the fix.

Technical summary

The Linux kernel cacheinfo subsystem has a vulnerability that causes a node reference leak in the populate_cache_leaves function for the RISC-V architecture. The issue arises when the loop that populates cache leaves terminates naturally without dropping the reference to the last valid node. The fix involves changing the final of_node_put(np) to of_node_put(prev) to ensure the reference to the previous node is properly dropped.

Defensive priority

Medium

Recommended defensive actions

  • Review and apply the provided patch to fix the node reference leak in the populate_cache_leaves function.
  • Ensure that the Linux kernel is updated to a version that includes this fix.
  • Monitor the Linux kernel for any related security advisories and apply patches as necessary.
  • Perform a thorough review of system configurations to ensure that compensating controls are in place for exposed systems.
  • Verify that monitoring and detection systems are in place to identify potential security incidents related to this vulnerability.
  • Conduct an asset inventory to identify all systems that may be affected by this vulnerability.
  • Track changes to the Linux kernel and related security advisories to ensure timely application of future patches.

Evidence notes

The vulnerability is caused by a node reference leak in the populate_cache_leaves function. The loop iterates through nodes and drops the reference to the previous node in each iteration. However, if the loop terminates naturally (i.e., np becomes NULL), the final of_node_put(np) call does not drop the reference to the last valid node stored in prev. This results in a node reference leak. The fix changes the final of_node_put(np) to of_node_put(prev) to address this issue.

Official resources

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