SUPERH platform development
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: linux-sh@vger.kernel.org
Subject: Re: [PATCH] dmaengine: rcar-dmac: Fix uninitialized variable usage
Date: Wed, 21 Jan 2015 22:16:18 +0000	[thread overview]
Message-ID: <1601519.I0fRl2WXHb@avalon> (raw)
In-Reply-To: <1420734565-23815-1-git-send-email-laurent.pinchart+renesas@ideasonboard.com>

Hi Vinod,

Could you please apply this patch to your tree for v3.20 ?

On Thursday 08 January 2015 18:29:25 Laurent Pinchart wrote:
> The desc variable is used uninitialized in the rcar_dmac_desc_get() and
> rcar_dmac_xfer_chunk_get() functions if descriptors need to be
> allocated. Fix it.
> 
> Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
> Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
> ---
>  drivers/dma/sh/rcar-dmac.c | 69 +++++++++++++++++++------------------------
>  1 file changed, 31 insertions(+), 38 deletions(-)
> 
> diff --git a/drivers/dma/sh/rcar-dmac.c b/drivers/dma/sh/rcar-dmac.c
> index 29dd09ad41ff..8367578bac63 100644
> --- a/drivers/dma/sh/rcar-dmac.c
> +++ b/drivers/dma/sh/rcar-dmac.c
> @@ -549,26 +549,22 @@ static struct rcar_dmac_desc
> *rcar_dmac_desc_get(struct rcar_dmac_chan *chan)
> 
>  	spin_lock_irq(&chan->lock);
> 
> -	do {
> -		if (list_empty(&chan->desc.free)) {
> -			/*
> -			 * No free descriptors, allocate a page worth of them
> -			 * and try again, as someone else could race us to get
> -			 * the newly allocated descriptors. If the allocation
> -			 * fails return an error.
> -			 */
> -			spin_unlock_irq(&chan->lock);
> -			ret = rcar_dmac_desc_alloc(chan, GFP_NOWAIT);
> -			if (ret < 0)
> -				return NULL;
> -			spin_lock_irq(&chan->lock);
> -			continue;
> -		}
> +	while (list_empty(&chan->desc.free)) {
> +		/*
> +		 * No free descriptors, allocate a page worth of them and try
> +		 * again, as someone else could race us to get the newly
> +		 * allocated descriptors. If the allocation fails return an
> +		 * error.
> +		 */
> +		spin_unlock_irq(&chan->lock);
> +		ret = rcar_dmac_desc_alloc(chan, GFP_NOWAIT);
> +		if (ret < 0)
> +			return NULL;
> +		spin_lock_irq(&chan->lock);
> +	}
> 
> -		desc = list_first_entry(&chan->desc.free, struct rcar_dmac_desc,
> -					node);
> -		list_del(&desc->node);
> -	} while (!desc);
> +	desc = list_first_entry(&chan->desc.free, struct rcar_dmac_desc, node);
> +	list_del(&desc->node);
> 
>  	spin_unlock_irq(&chan->lock);
> 
> @@ -621,26 +617,23 @@ rcar_dmac_xfer_chunk_get(struct rcar_dmac_chan *chan)
> 
>  	spin_lock_irq(&chan->lock);
> 
> -	do {
> -		if (list_empty(&chan->desc.chunks_free)) {
> -			/*
> -			 * No free descriptors, allocate a page worth of them
> -			 * and try again, as someone else could race us to get
> -			 * the newly allocated descriptors. If the allocation
> -			 * fails return an error.
> -			 */
> -			spin_unlock_irq(&chan->lock);
> -			ret = rcar_dmac_xfer_chunk_alloc(chan, GFP_NOWAIT);
> -			if (ret < 0)
> -				return NULL;
> -			spin_lock_irq(&chan->lock);
> -			continue;
> -		}
> +	while (list_empty(&chan->desc.chunks_free)) {
> +		/*
> +		 * No free descriptors, allocate a page worth of them and try
> +		 * again, as someone else could race us to get the newly
> +		 * allocated descriptors. If the allocation fails return an
> +		 * error.
> +		 */
> +		spin_unlock_irq(&chan->lock);
> +		ret = rcar_dmac_xfer_chunk_alloc(chan, GFP_NOWAIT);
> +		if (ret < 0)
> +			return NULL;
> +		spin_lock_irq(&chan->lock);
> +	}
> 
> -		chunk = list_first_entry(&chan->desc.chunks_free,
> -					  struct rcar_dmac_xfer_chunk, node);
> -		list_del(&chunk->node);
> -	} while (!chunk);
> +	chunk = list_first_entry(&chan->desc.chunks_free,
> +				 struct rcar_dmac_xfer_chunk, node);
> +	list_del(&chunk->node);
> 
>  	spin_unlock_irq(&chan->lock);

-- 
Regards,

Laurent Pinchart


  reply	other threads:[~2015-01-21 22:16 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-08 16:29 [PATCH] dmaengine: rcar-dmac: Fix uninitialized variable usage Laurent Pinchart
2015-01-21 22:16 ` Laurent Pinchart [this message]
2015-02-11  1:39 ` Vinod Koul

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1601519.I0fRl2WXHb@avalon \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=linux-sh@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox