HomeDefectsLIN1025-13796
Acknowledged

LIN1025-13796 : Security Advisory - linux - CVE-2026-31658

Created: Apr 27, 2026    Updated: Apr 30, 2026
Found In Version: 10.25.33.2
Severity: Standard
Applicable for: Wind River Linux LTS 25
Component/s: Kernel

Description

In the Linux kernel, the following vulnerability has been resolved:  net: altera-tse: fix skb leak on DMA mapping error in tse_start_xmit()  When dma_map_single() fails in tse_start_xmit(), the function returns NETDEV_TX_OK without freeing the skb. Since NETDEV_TX_OK tells the stack the packet was consumed, the skb is never freed, leaking memory on every DMA mapping failure.  Add dev_kfree_skb_any() before returning to properly free the skb.