mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 10:31:46 +09:00
iio: buffer-dmaengine: fix releasing dma channel on error
commit 84c65d8008764a8fb4e627ff02de01ec4245f2c4 upstream.
If dma_get_slave_caps() fails, we need to release the dma channel before
returning an error to avoid leaking the channel.
Fixes: 2d6ca60f32 ("iio: Add a DMAengine framework based buffer")
Signed-off-by: David Lechner <dlechner@baylibre.com>
Link: https://patch.msgid.link/20240723-iio-fix-dmaengine-free-on-error-v1-1-2c7cbc9b92ff@baylibre.com
Cc: <Stable@vger.kernel.org>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
3ba9abfcaa
commit
08b072b8ef
@@ -180,7 +180,7 @@ static struct iio_buffer *iio_dmaengine_buffer_alloc(struct device *dev,
|
|||||||
|
|
||||||
ret = dma_get_slave_caps(chan, &caps);
|
ret = dma_get_slave_caps(chan, &caps);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
goto err_free;
|
goto err_release;
|
||||||
|
|
||||||
/* Needs to be aligned to the maximum of the minimums */
|
/* Needs to be aligned to the maximum of the minimums */
|
||||||
if (caps.src_addr_widths)
|
if (caps.src_addr_widths)
|
||||||
@@ -206,6 +206,8 @@ static struct iio_buffer *iio_dmaengine_buffer_alloc(struct device *dev,
|
|||||||
|
|
||||||
return &dmaengine_buffer->queue.buffer;
|
return &dmaengine_buffer->queue.buffer;
|
||||||
|
|
||||||
|
err_release:
|
||||||
|
dma_release_channel(chan);
|
||||||
err_free:
|
err_free:
|
||||||
kfree(dmaengine_buffer);
|
kfree(dmaengine_buffer);
|
||||||
return ERR_PTR(ret);
|
return ERR_PTR(ret);
|
||||||
|
|||||||
Reference in New Issue
Block a user