mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-07 04:09:21 +00:00
async_tx: add missing DMA unmap to async_memcpy()
Do DMA unmap on ->device_prep_dma_memcpy failure. Cc: Dan Williams <djbw@fb.com> Cc: Tomasz Figa <t.figa@samsung.com> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Signed-off-by: Dan Williams <djbw@fb.com>
This commit is contained in:
parent
2c88ae9093
commit
35fa4dbc8c
1 changed files with 6 additions and 0 deletions
|
@ -67,6 +67,12 @@ async_memcpy(struct page *dest, struct page *src, unsigned int dest_offset,
|
||||||
|
|
||||||
tx = device->device_prep_dma_memcpy(chan, dma_dest, dma_src,
|
tx = device->device_prep_dma_memcpy(chan, dma_dest, dma_src,
|
||||||
len, dma_prep_flags);
|
len, dma_prep_flags);
|
||||||
|
if (!tx) {
|
||||||
|
dma_unmap_page(device->dev, dma_dest, len,
|
||||||
|
DMA_FROM_DEVICE);
|
||||||
|
dma_unmap_page(device->dev, dma_src, len,
|
||||||
|
DMA_TO_DEVICE);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (tx) {
|
if (tx) {
|
||||||
|
|
Loading…
Reference in a new issue