lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Thu, 25 Nov 2010 10:04:35 +0100
From:	Sascha Hauer <s.hauer@...gutronix.de>
To:	Anatolij Gustschin <agust@...x.de>
Cc:	linux-kernel@...r.kernel.org,
	Dan Williams <dan.j.williams@...el.com>
Subject: Re: [PATCH] dmaengine: imx-sdma: fix bug in buffer descriptor
	initialization

On Mon, Nov 22, 2010 at 06:35:18PM +0100, Anatolij Gustschin wrote:
> Currently while submitting scatterlists with more than one SG
> entry the DMA buffer address from the first SG entry is inserted
> into all initialized DMA buffer descriptors. This is due to the
> typo in the for_each_sg() loop where the scatterlist pointer is
> used for obtaining the DMA buffer address and _not_ the SG list
> iterator.
> 
> As a result all received data will be written only into the first
> DMA buffer while reading. While writing the data from the first
> DMA buffer is send to the device multiple times. This caused
> the filesystem destruction on the MMC card when using DMA in
> mxcmmc driver.
> 
> Signed-off-by: Anatolij Gustschin <agust@...x.de>
> Cc: Dan Williams <dan.j.williams@...el.com>
> Cc: Sascha Hauer <s.hauer@...gutronix.de>

Acked-by: Sascha Hauer <s.hauer@...gutronix.de>

> ---
>  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 0834323..13d6447 100644
> --- a/drivers/dma/imx-sdma.c
> +++ b/drivers/dma/imx-sdma.c
> @@ -951,7 +951,7 @@ static struct dma_async_tx_descriptor *sdma_prep_slave_sg(
>  		struct sdma_buffer_descriptor *bd = &sdmac->bd[i];
>  		int param;
>  
> -		bd->buffer_addr = sgl->dma_address;
> +		bd->buffer_addr = sg->dma_address;
>  
>  		count = sg->length;
>  
> -- 
> 1.7.1
> 
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |
--
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

Powered by Openwall GNU/*/Linux Powered by OpenVZ