]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
net: wan/fsl_ucc_hdlc: Fix dma_free_coherent() in uhdlc_memclean()
authorThomas Fourier <fourier.thomas@gmail.com>
Fri, 6 Feb 2026 08:53:33 +0000 (09:53 +0100)
committerPaolo Abeni <pabeni@redhat.com>
Tue, 10 Feb 2026 14:46:49 +0000 (15:46 +0100)
commit36bd7d5deef936c4e1e3cd341598140e5c14c1d3
tree543ccb284c4616f4134fea8a277917049dd4cbc6
parent308e7e4d0a846359685f40aade023aee7b27284c
net: wan/fsl_ucc_hdlc: Fix dma_free_coherent() in uhdlc_memclean()

The priv->rx_buffer and priv->tx_buffer are alloc'd together as
contiguous buffers in uhdlc_init() but freed as two buffers in
uhdlc_memclean().

Change the cleanup to only call dma_free_coherent() once on the whole
buffer.

Reviewed-by: Christophe Leroy (CS GROUP) <chleroy@kernel.org>
Fixes: c19b6d246a35 ("drivers/net: support hdlc function for QE-UCC")
Cc: <stable@vger.kernel.org>
Signed-off-by: Thomas Fourier <fourier.thomas@gmail.com>
Link: https://patch.msgid.link/20260206085334.21195-2-fourier.thomas@gmail.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
drivers/net/wan/fsl_ucc_hdlc.c