Hi Stefan, On 10/16/2017 08:13 AM, Stefan Roese wrote: > The patch edf10919 [dmaengine: altera: fix spinlock usage] missed to > change 2 occurances of spin_unlock_bh() to spin_unlock_irqrestore(). > This patch fixes this by moving to the IRQ-safe call in the error > paths as well. > > Signed-off-by: Stefan Roese <sr@xxxxxxx> > Cc: Sylvain Lesne <lesne@xxxxxxxxxxx> > Cc: Vinod Koul <vinod.koul@xxxxxxxxx> > --- > drivers/dma/altera-msgdma.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/dma/altera-msgdma.c b/drivers/dma/altera-msgdma.c > index 339186f25a2a..55f9c62ee54b 100644 > --- a/drivers/dma/altera-msgdma.c > +++ b/drivers/dma/altera-msgdma.c > @@ -344,7 +344,7 @@ msgdma_prep_memcpy(struct dma_chan *dchan, dma_addr_t dma_dst, > > spin_lock_irqsave(&mdev->lock, irqflags); > if (desc_cnt > mdev->desc_free_cnt) { > - spin_unlock_bh(&mdev->lock); > + spin_unlock_irqrestore(&mdev->lock, irqflags); > dev_dbg(mdev->dev, "mdev %p descs are not available\n", mdev); > return NULL; > } > @@ -407,7 +407,7 @@ msgdma_prep_slave_sg(struct dma_chan *dchan, struct scatterlist *sgl, > > spin_lock_irqsave(&mdev->lock, irqflags); > if (desc_cnt > mdev->desc_free_cnt) { > - spin_unlock_bh(&mdev->lock); > + spin_unlock_irqrestore(&mdev->lock, irqflags); > dev_dbg(mdev->dev, "mdev %p descs are not available\n", mdev); > return NULL; > } > Thanks for the fix! Sorry about this oversight. Reviewed-by: Sylvain Lesne <lesne@xxxxxxxxxxx> Thanks, Sylvain -- To unsubscribe from this list: send the line "unsubscribe dmaengine" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html