]> www.infradead.org Git - users/jedix/linux-maple.git/commit
dmaengine: pl330: Fix overflow when reporting residue in memcpy
authorKrzysztof Kozlowski <k.kozlowski@samsung.com>
Mon, 15 Jun 2015 08:25:16 +0000 (17:25 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 17 Aug 2015 03:52:11 +0000 (20:52 -0700)
commit9cd4b78cd56489755fcba685b5e1a243cea6e6cf
tree63e2e25339f989f6b44ad883aeccf0fec3593dc2
parent4e200fcacc37eebe93acfc3d751b6b7b79bf85a1
dmaengine: pl330: Fix overflow when reporting residue in memcpy

commit ae128293d97404f491dc76f1843c7adacfec3441 upstream.

During memcpy operations the residue was always set to an u32 overflowed
value.

In pl330_tx_status() function number of currently transferred bytes was
subtracted from internal "bytes_requested" field. However this
"bytes_requested" was not initialized at start to length of memcpy
buffer so transferred bytes were subtracted from 0 causing overflow.

Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Fixes: aee4d1fac887 ("dmaengine: pl330: improve pl330_tx_status() function")
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/dma/pl330.c