AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-72149

UNKNOWN · CVSS N/A

Source: NVD + CISA KEV + EPSS · Published 2026-08-15 · Last synced 2026-08-15

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's DMA engine, specifically the Tegra GPC DMA hardware, which can hang during transfers when the requested length is not a multiple of the configured maximum burst size. This can lead to stalled operations, particularly impacting systems utilizing the PL011 UART driver for TX DMA transfers of arbitrary lengths. Organizations using Linux systems with Tegra hardware should prioritize addressing this issue to ensure reliable DMA operations and prevent potential disruptions.

CVE
CVE-2026-72149
Severity
UNKNOWN
CVSS
N/A
EPSS
N/A
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: dmaengine: tegra: Fix burst size calculation Currently, the Tegra GPC DMA hardware requires the transfer length to be a multiple of the max burst size configured for the channel. When a client requests a transfer where the length is not evenly divisible by the configured max burst size, the DMA hangs with partial burst at the end. Fix this by reducing the burst size to the largest power-of-2 value that evenly divides the transfer length. For example, a 40-byte transfer with a 16-byte max burst will now use an 8-byte burst (40 / 8 = 5 complete bursts) instead of causing a hang. This issue was observed with the PL011 UART driver where TX DMA transfers of arbitrary lengths were stuck.