mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
dma: ste_dma40: don't dereference free:d descriptor
commit e9baa9d9d5
upstream.
It appears that in the DMA40 driver the DMA tasklet will very
often dereference memory for a descriptor just free:d from the
DMA40 slab. Nothing happens because no other part of the driver
has yet had a chance to claim this memory, but it's really
nasty to dereference free:d memory, so let's check the flag
before the descriptor is free and store it in a bool variable.
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
54499e71ec
commit
8d8e4839b5
1 changed files with 3 additions and 1 deletions
|
@ -1409,6 +1409,7 @@ static void dma_tasklet(unsigned long data)
|
|||
struct d40_chan *d40c = (struct d40_chan *) data;
|
||||
struct d40_desc *d40d;
|
||||
unsigned long flags;
|
||||
bool callback_active;
|
||||
dma_async_tx_callback callback;
|
||||
void *callback_param;
|
||||
|
||||
|
@ -1432,6 +1433,7 @@ static void dma_tasklet(unsigned long data)
|
|||
}
|
||||
|
||||
/* Callback to client */
|
||||
callback_active = !!(d40d->txd.flags & DMA_PREP_INTERRUPT);
|
||||
callback = d40d->txd.callback;
|
||||
callback_param = d40d->txd.callback_param;
|
||||
|
||||
|
@ -1456,7 +1458,7 @@ static void dma_tasklet(unsigned long data)
|
|||
|
||||
spin_unlock_irqrestore(&d40c->lock, flags);
|
||||
|
||||
if (callback && (d40d->txd.flags & DMA_PREP_INTERRUPT))
|
||||
if (callback_active && callback)
|
||||
callback(callback_param);
|
||||
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue