[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAOh2x=mE8d1YtRy_Efqbtc+24SCgEYuKwVpFHrFZBTpt2CB08w@mail.gmail.com>
Date: Sat, 10 Nov 2012 09:00:15 +0530
From: viresh kumar <viresh.kumar@...aro.org>
To: Jon Mason <jon.mason@...el.com>, Dan Williams <djbw@...com>
Cc: linux-kernel@...r.kernel.org, Dave Jiang <dave.jiang@...el.com>,
Vinod Koul <vinod.koul@...el.com>
Subject: Re: [PATCH] dmatest: Fix NULL pointer dereference on ioat
On Sat, Nov 10, 2012 at 2:27 AM, Jon Mason <jon.mason@...el.com> wrote:
> device_control is an optional and not implemented in all DMA drivers.
> Any calls to these will result in a NULL pointer dereference. dmatest
> makes two of these calls when completing the kernel thread and removing
> the module. These are corrected by calling the dmaengine_device_control
> wrapper and checking for a non-existant device_control function pointer
> there.
>
> Signed-off-by: Jon Mason <jon.mason@...el.com>
> CC: Vinod Koul <vinod.koul@...el.com>
> CC: Dan Williams <djbw@...com>
> ---
> drivers/dma/dmatest.c | 4 ++--
> include/linux/dmaengine.h | 5 ++++-
> 2 files changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/include/linux/dmaengine.h b/include/linux/dmaengine.h
> index d3201e4..e0004fb 100644
> --- a/include/linux/dmaengine.h
> +++ b/include/linux/dmaengine.h
> @@ -608,7 +608,10 @@ static inline int dmaengine_device_control(struct dma_chan *chan,
> enum dma_ctrl_cmd cmd,
> unsigned long arg)
> {
> - return chan->device->device_control(chan, cmd, arg);
> + if (chan->device->device_control)
> + return chan->device->device_control(chan, cmd, arg);
> + else
> + return -EINVAL;
-ENOTSUPP or -ENOSYS ??
@Dan: I believe i don't have to send another version now. Correct??
--
viresh
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists