* [PATCH] S3C24XX: DMA: Use valid index when accessing array
@ 2009-12-08 15:42 Ramax Lo
2009-12-08 23:06 ` Ben Dooks
0 siblings, 1 reply; 2+ messages in thread
From: Ramax Lo @ 2009-12-08 15:42 UTC (permalink / raw)
To: linux-arm-kernel
The DMA_CH_VALID bit used in the channel index should be masked out before
using it to access the channel array.
Signed-off-by: Ramax Lo <ramaxlo@gmail.com>
---
arch/arm/plat-s3c24xx/dma.c | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/arch/arm/plat-s3c24xx/dma.c b/arch/arm/plat-s3c24xx/dma.c
index f046f8c..3623b2e 100644
--- a/arch/arm/plat-s3c24xx/dma.c
+++ b/arch/arm/plat-s3c24xx/dma.c
@@ -1403,11 +1403,13 @@ static struct s3c2410_dma_chan *s3c2410_dma_map_channel(int channel)
ord = &dma_order->channels[channel];
for (ch = 0; ch < dma_channels; ch++) {
+ int tmp;
if (!is_channel_valid(ord->list[ch]))
continue;
- if (s3c2410_chans[ord->list[ch]].in_use == 0) {
- ch = ord->list[ch] & ~DMA_CH_VALID;
+ tmp = ord->list[ch] & ~DMA_CH_VALID;
+ if (s3c2410_chans[tmp].in_use == 0) {
+ ch = tmp;
goto found;
}
}
--
1.5.4.3
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [PATCH] S3C24XX: DMA: Use valid index when accessing array
2009-12-08 15:42 [PATCH] S3C24XX: DMA: Use valid index when accessing array Ramax Lo
@ 2009-12-08 23:06 ` Ben Dooks
0 siblings, 0 replies; 2+ messages in thread
From: Ben Dooks @ 2009-12-08 23:06 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, Dec 08, 2009 at 11:42:41PM +0800, Ramax Lo wrote:
> The DMA_CH_VALID bit used in the channel index should be masked out before
> using it to access the channel array.
ok, applied to s3c24xx-updates.
> Signed-off-by: Ramax Lo <ramaxlo@gmail.com>
> ---
> arch/arm/plat-s3c24xx/dma.c | 6 ++++--
> 1 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/arch/arm/plat-s3c24xx/dma.c b/arch/arm/plat-s3c24xx/dma.c
> index f046f8c..3623b2e 100644
> --- a/arch/arm/plat-s3c24xx/dma.c
> +++ b/arch/arm/plat-s3c24xx/dma.c
> @@ -1403,11 +1403,13 @@ static struct s3c2410_dma_chan *s3c2410_dma_map_channel(int channel)
> ord = &dma_order->channels[channel];
>
> for (ch = 0; ch < dma_channels; ch++) {
> + int tmp;
> if (!is_channel_valid(ord->list[ch]))
> continue;
>
> - if (s3c2410_chans[ord->list[ch]].in_use == 0) {
> - ch = ord->list[ch] & ~DMA_CH_VALID;
> + tmp = ord->list[ch] & ~DMA_CH_VALID;
> + if (s3c2410_chans[tmp].in_use == 0) {
> + ch = tmp;
> goto found;
> }
> }
> --
> 1.5.4.3
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
--
--
Ben
Q: What's a light-year?
A: One-third less calories than a regular year.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-12-08 23:06 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-08 15:42 [PATCH] S3C24XX: DMA: Use valid index when accessing array Ramax Lo
2009-12-08 23:06 ` Ben Dooks
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).