media: ti: j721e-csi2rx: Fix races while restarting DMA
BugLink: https://bugs.launchpad.net/bugs/2073603
[ Upstream commit ad79c9ecea5baa7b4f19677e4b1c881ed89b0c3b ]
After the frame is submitted to DMA, it may happen that the submitted
list is not updated soon enough, and the DMA callback is triggered
before that.
This can lead to kernel crashes, so move everything in a single
lock/unlock section to prevent such races.
Fixes: b4a3d877dc ("media: ti: Add CSI2RX support for J721E")
Signed-off-by: Jai Luthra <j-luthra@ti.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Portia Stephens <portia.stephens@canonical.com>
Signed-off-by: Roxana Nicolescu <roxana.nicolescu@canonical.com>
This commit is contained in:
committed by
Roxana Nicolescu
parent
c24bd0096e
commit
fd3bf280a0
@@ -762,15 +762,14 @@ static void ti_csi2rx_buffer_queue(struct vb2_buffer *vb)
|
||||
dev_warn(csi->dev,
|
||||
"Failed to drain DMA. Next frame might be bogus\n");
|
||||
|
||||
spin_lock_irqsave(&dma->lock, flags);
|
||||
ret = ti_csi2rx_start_dma(csi, buf);
|
||||
if (ret) {
|
||||
dev_err(csi->dev, "Failed to start DMA: %d\n", ret);
|
||||
spin_lock_irqsave(&dma->lock, flags);
|
||||
vb2_buffer_done(&buf->vb.vb2_buf, VB2_BUF_STATE_ERROR);
|
||||
dma->state = TI_CSI2RX_DMA_IDLE;
|
||||
spin_unlock_irqrestore(&dma->lock, flags);
|
||||
dev_err(csi->dev, "Failed to start DMA: %d\n", ret);
|
||||
} else {
|
||||
spin_lock_irqsave(&dma->lock, flags);
|
||||
list_add_tail(&buf->list, &dma->submitted);
|
||||
spin_unlock_irqrestore(&dma->lock, flags);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user