All of lore.kernel.org
 help / color / mirror / Atom feed
From: dirk.behme@de.bosch.com (Dirk Behme)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 5/6] dma/imx-sdma: use num_events to validate event_id0
Date: Tue, 10 Jan 2012 15:02:25 +0100	[thread overview]
Message-ID: <4F0C44F1.9060703@de.bosch.com> (raw)
In-Reply-To: <1326178910-14044-5-git-send-email-richard.zhao@linaro.org>

On 10.01.2012 08:01, Richard Zhao wrote:
> event number is not always 32. use num_events for checking instead.
> 
> Signed-off-by: Richard Zhao <richard.zhao@linaro.org>
> ---
>  drivers/dma/imx-sdma.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/dma/imx-sdma.c b/drivers/dma/imx-sdma.c
> index 015d93f..22fd561 100644
> --- a/drivers/dma/imx-sdma.c
> +++ b/drivers/dma/imx-sdma.c
> @@ -723,7 +723,7 @@ static int sdma_config_channel(struct sdma_channel *sdmac)
>  	sdmac->per_addr = 0;
>  
>  	if (sdmac->event_id0) {
> -		if (sdmac->event_id0 > 32)
> +		if (sdmac->event_id0 >= sdmac->sdma->num_events)
>  			return -EINVAL;
>  		sdma_event_enable(sdmac, sdmac->event_id0);
>  	}

In your git you have

http://git.linaro.org/gitweb?p=people/riczhao/linux-2.6.git;a=commitdiff;h=4bd46e7f8ade05984ee89222bc0523b656d017d2

-       if (sdmac->event_id0) {
-               if (sdmac->event_id0 > 32)
-                       return -EINVAL;
+       if (sdmac->event_id0)
                 sdma_event_enable(sdmac, sdmac->event_id0);

I your git version outdated and replaced by this patch?

Best regards

Dirk

WARNING: multiple messages have this Message-ID (diff)
From: Dirk Behme <dirk.behme@de.bosch.com>
To: Richard Zhao <richard.zhao@linaro.org>
Cc: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"linux-arm-kernel@lists.infradead.org" 
	<linux-arm-kernel@lists.infradead.org>,
	"patches@linaro.org" <patches@linaro.org>,
	"vinod.koul@intel.com" <vinod.koul@intel.com>,
	"eric.miao@linaro.org" <eric.miao@linaro.org>,
	"kernel@pengutronix.de" <kernel@pengutronix.de>,
	"dan.j.williams@intel.com" <dan.j.williams@intel.com>,
	"shawn.guo@linaro.org" <shawn.guo@linaro.org>
Subject: Re: [PATCH 5/6] dma/imx-sdma: use num_events to validate event_id0
Date: Tue, 10 Jan 2012 15:02:25 +0100	[thread overview]
Message-ID: <4F0C44F1.9060703@de.bosch.com> (raw)
In-Reply-To: <1326178910-14044-5-git-send-email-richard.zhao@linaro.org>

On 10.01.2012 08:01, Richard Zhao wrote:
> event number is not always 32. use num_events for checking instead.
> 
> Signed-off-by: Richard Zhao <richard.zhao@linaro.org>
> ---
>  drivers/dma/imx-sdma.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/dma/imx-sdma.c b/drivers/dma/imx-sdma.c
> index 015d93f..22fd561 100644
> --- a/drivers/dma/imx-sdma.c
> +++ b/drivers/dma/imx-sdma.c
> @@ -723,7 +723,7 @@ static int sdma_config_channel(struct sdma_channel *sdmac)
>  	sdmac->per_addr = 0;
>  
>  	if (sdmac->event_id0) {
> -		if (sdmac->event_id0 > 32)
> +		if (sdmac->event_id0 >= sdmac->sdma->num_events)
>  			return -EINVAL;
>  		sdma_event_enable(sdmac, sdmac->event_id0);
>  	}

In your git you have

http://git.linaro.org/gitweb?p=people/riczhao/linux-2.6.git;a=commitdiff;h=4bd46e7f8ade05984ee89222bc0523b656d017d2

-       if (sdmac->event_id0) {
-               if (sdmac->event_id0 > 32)
-                       return -EINVAL;
+       if (sdmac->event_id0)
                 sdma_event_enable(sdmac, sdmac->event_id0);

I your git version outdated and replaced by this patch?

Best regards

Dirk

  reply	other threads:[~2012-01-10 14:02 UTC|newest]

Thread overview: 44+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-01-10  7:01 [PATCH 1/6] dma/imx-sdma: let sdma_run_channel call sdma_enable_channel Richard Zhao
2012-01-10  7:01 ` Richard Zhao
2012-01-10  7:01 ` [PATCH 2/6] dma/imx-sdma: use readl_relaxed/writel_relaxed and use writel when necessary Richard Zhao
2012-01-10  7:01   ` Richard Zhao
2012-01-10  7:01 ` [PATCH 3/6] dma/imx-sdma: call sdma_set_channel_priority after sdma_request_channel Richard Zhao
2012-01-10  7:01   ` Richard Zhao
2012-01-10  7:01 ` [PATCH 4/6] dma/imx-sdma: move clk_enable out of sdma_request_channel Richard Zhao
2012-01-10  7:01   ` Richard Zhao
2012-01-10  7:01 ` [PATCH 5/6] dma/imx-sdma: use num_events to validate event_id0 Richard Zhao
2012-01-10  7:01   ` Richard Zhao
2012-01-10 14:02   ` Dirk Behme [this message]
2012-01-10 14:02     ` Dirk Behme
2012-01-10 14:16   ` Shawn Guo
2012-01-10 14:16     ` Shawn Guo
2012-01-10  7:01 ` [PATCH 6/6] dma/imx-sdma: check whether event_id0 < 32 when set event_mask Richard Zhao
2012-01-10  7:01   ` Richard Zhao
2012-01-10 14:20   ` Shawn Guo
2012-01-10 14:20     ` Shawn Guo
2012-01-10 14:29     ` Richard Zhao
2012-01-10 14:29       ` Richard Zhao
2012-01-10 15:38       ` Shawn Guo
2012-01-10 15:38         ` Shawn Guo
2012-01-11  0:53         ` Richard Zhao
2012-01-11  0:53           ` Richard Zhao
2012-01-11  1:47           ` Richard Zhao
2012-01-11  1:47             ` Richard Zhao
2012-01-11  6:37             ` Eric Miao
2012-01-11  6:37               ` Eric Miao
2012-01-11 12:35               ` Richard Zhao
2012-01-11 12:35                 ` Richard Zhao
2012-01-11 12:53                 ` Richard Zhao
2012-01-11 12:53                   ` Richard Zhao
2012-01-12 14:23                   ` Richard Zhao
2012-01-12 14:23                     ` Richard Zhao
2012-01-11 13:16               ` Shawn Guo
2012-01-11 13:16                 ` Shawn Guo
2012-01-11 13:09                 ` Richard Zhao
2012-01-11 13:09                   ` Richard Zhao
2012-01-11 13:35                   ` Shawn Guo
2012-01-11 13:35                     ` Shawn Guo
2012-01-11 13:48                     ` Eric Miao
2012-01-11 13:48                       ` Eric Miao
2012-01-11 13:11           ` Shawn Guo
2012-01-11 13:11             ` Shawn Guo

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=4F0C44F1.9060703@de.bosch.com \
    --to=dirk.behme@de.bosch.com \
    --cc=linux-arm-kernel@lists.infradead.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.