]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
dmaengine: pl330: fix irq race with terminate_all
authorJohn Keeping <john@metanate.com>
Tue, 17 Jul 2018 10:48:16 +0000 (11:48 +0100)
committerVinod Koul <vkoul@kernel.org>
Wed, 25 Jul 2018 12:29:57 +0000 (17:59 +0530)
In pl330_update() when checking if a channel has been aborted, the
channel's lock is not taken, only the overall pl330_dmac lock.  But in
pl330_terminate_all() the aborted flag (req_running==-1) is set under
the channel lock and not the pl330_dmac lock.

With threaded interrupts, this leads to a potential race:

    pl330_terminate_all         pl330_update
    -------------------         ------------
    lock channel
                                entry
    lock pl330
    _stop channel
    unlock pl330
                                lock pl330
                                check req_running != -1
    req_running = -1
                                _start channel

Signed-off-by: John Keeping <john@metanate.com>
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/dma/pl330.c

index 451370da909d365729477f84e1bf420400b65315..9e38947f6ffe07eb5d2c3e39d617f8a4b2f6f7c5 100644 (file)
@@ -2256,13 +2256,14 @@ static int pl330_terminate_all(struct dma_chan *chan)
 
        pm_runtime_get_sync(pl330->ddma.dev);
        spin_lock_irqsave(&pch->lock, flags);
+
        spin_lock(&pl330->lock);
        _stop(pch->thread);
-       spin_unlock(&pl330->lock);
-
        pch->thread->req[0].desc = NULL;
        pch->thread->req[1].desc = NULL;
        pch->thread->req_running = -1;
+       spin_unlock(&pl330->lock);
+
        power_down = pch->active;
        pch->active = false;