Reference page — cumulative record through Wednesday, August 19, 2026 UTC. Reference pages update as the archive grows; only dated daily editions are immutable pages of record.
Linux Linux — dmaengine: mmp_pdma: Fix race condition in mmp_pdma_residue()
AV AC PR UI S C I A CVSS EPSS %ile KEV
L H L N U H H H 7.0 .0010 0.8 —
AFFECTED
Product Versions Fixed
Linux 1b38da264674d6a0fe26a63996b8f88b88c3da48 – —
Linux 3.16 – 5.15.209
TIMELINE
Feb 14 Reserved by Linux
Feb 14 Published (CNA: Linux)
Jul 30 RESCORED — CVE-2025-71221 (Linux). CVSS 7.8 → 7 (NVD).
Description
In the Linux kernel, the following vulnerability has been resolved:
dmaengine: mmp_pdma: Fix race condition in mmp_pdma_residue()
Add proper locking in mmp_pdma_residue() to prevent use-after-free when
accessing descriptor list and descriptor contents.
The race occurs when multiple threads call tx_status() while the tasklet
on another CPU is freeing completed descriptors:
CPU 0 CPU 1
----- -----
mmp_pdma_tx_status()
mmp_pdma_residue()
-> NO LOCK held
list_for_each_entry(sw, ..)
DMA interrupt
dma_do_tasklet()
-> spin_lock(&desc_lock)
list_move(sw->node, ...)
spin_unlock(&desc_lock)
| dma_pool_free(sw) <- FREED!
-> access sw->desc <- UAF!
This issue can be reproduced when running dmatest on the same channel with
multiple threads (threads_per_chan > 1).
Fix by protecting the chain_running list iteration and descriptor access
with the chan->desc_lock spinlock.
Lifecycle
Complete event history — 3 events, chronological
| Date | Event | Detail |
| February 14, 2026 | Reserved | Reserved by Linux |
| February 14, 2026 | Published | Published (CNA: Linux) |
| July 30, 2026 | RESCORED | RESCORED — CVE-2025-71221 (Linux). CVSS 7.8 → 7 (NVD). |
Affected
Affected products and packages — 2 rows
| Vendor | Product / Package | Ecosystem | Version introduced | Fixed |
| Linux | Linux | — | 1b38da264674d6a0fe26a63996b8f88b88c3da48 | — |
| Linux | Linux | — | 3.16 | 5.15.209 |
About this page
This is a reference page, not a dated page of record. It assembles the complete lifecycle of CVE-2025-71221 from the CVE Program record, NVD enrichment, the CISA KEV catalog, EPSS, and OSV advisories. The box score's numbers (CVSS, EPSS, KEV status) are current as of Wednesday, August 19, 2026 UTC and are re-derived as the archive grows; only dated daily editions are immutable pages of record. The authoritative source for this identifier is cve.org.