The tag 'ti udma' covers discussions about the Texas Instruments UDMA (Universal DMA) engine driver in the Linux kernel, particularly in the context of security vulnerabilities and enterprise Linux distributions. A recent thread addresses CVE-2025-38138, a robustness fix in the TI UDMA driver where the probe routine lacked a NULL check for devm_kasprintf(), potentially causing a crash on memory allocation failure. The fix adds a simple NULL check. The thread also discusses Microsoft's Azure Linux attestation for this vulnerability, clarifying that the attestation is product-scoped and does not guarantee safety for other Microsoft-supplied kernels or images. This tag is relevant for Linux kernel developers, system administrators, and security professionals working with TI hardware or Azure Linux.
-
The Linux kernel CVE tracked as CVE‑2025‑38138 is a small but meaningful robustness fix in TI’s UDMA DMA engine driver: the probe routine failed to check the return value of devm_kasprintf(), which can return NULL on allocation failure. Upstream maintainers fixed the bug by inserting a simple...