SEPTEMBER 19, 2026
Live Feed
Back to database
Case File

CVE-2026-80902

UNKNOWN · CVSS N/A EPSS 0.17%

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

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's DMA engine, specifically in the sun6i-dma driver, where active non-cyclic descriptors are not properly reclaimed during DMA transfer termination, leading to potential memory leaks. This issue can impact system performance and stability due to resource exhaustion. Organizations using affected Linux kernel versions, particularly those relying on DMA operations, should prioritize addressing this vulnerability to ensure system integrity and efficiency.

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

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: dmaengine: sun6i-dma: Fix reclaim descriptors while terminating DMA When terminating DMA transfers, active descriptors are not properly reclaimed. Only cyclic descriptors were handled, leaving non-cyclic descriptors and their LLI chains to be permanently leaked. Fix by using vchan_terminate_vdesc() which handles both cyclic and non-cyclic descriptors by adding them to desc_terminated queue for proper cleanup. Add pchan->desc != pchan->done check to prevent double-adding completed descriptors, which would corrupt the list.