diff mbox series

[1/1] dmaengine: fsl-edma: fix DMA channel leak in eDMAv4

Message ID 20231127214325.2477247-1-Frank.Li@nxp.com (mailing list archive)
State Accepted
Commit 4ee632c82d2dbb9e2dcc816890ef182a151cbd99
Headers show
Series [1/1] dmaengine: fsl-edma: fix DMA channel leak in eDMAv4 | expand

Commit Message

Frank Li Nov. 27, 2023, 9:43 p.m. UTC
Allocate channel count consistently increases due to a missing source ID
(srcid) cleanup in the fsl_edma_free_chan_resources() function at imx93
eDMAv4.

Reset 'srcid' at fsl_edma_free_chan_resources().

Cc: stable@vger.kernel.org
Fixes: 72f5801a4e2b ("dmaengine: fsl-edma: integrate v3 support")
Signed-off-by: Frank Li <Frank.Li@nxp.com>
---
 drivers/dma/fsl-edma-common.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Vinod Koul Dec. 11, 2023, 3:04 p.m. UTC | #1
On Mon, 27 Nov 2023 16:43:25 -0500, Frank Li wrote:
> Allocate channel count consistently increases due to a missing source ID
> (srcid) cleanup in the fsl_edma_free_chan_resources() function at imx93
> eDMAv4.
> 
> Reset 'srcid' at fsl_edma_free_chan_resources().
> 
> 
> [...]

Applied, thanks!

[1/1] dmaengine: fsl-edma: fix DMA channel leak in eDMAv4
      commit: 4ee632c82d2dbb9e2dcc816890ef182a151cbd99

Best regards,
diff mbox series

Patch

diff --git a/drivers/dma/fsl-edma-common.c b/drivers/dma/fsl-edma-common.c
index 49e6cfc285029..c8acff09308fd 100644
--- a/drivers/dma/fsl-edma-common.c
+++ b/drivers/dma/fsl-edma-common.c
@@ -837,6 +837,7 @@  void fsl_edma_free_chan_resources(struct dma_chan *chan)
 	dma_pool_destroy(fsl_chan->tcd_pool);
 	fsl_chan->tcd_pool = NULL;
 	fsl_chan->is_sw = false;
+	fsl_chan->srcid = 0;
 }
 
 void fsl_edma_cleanup_vchan(struct dma_device *dmadev)