dmaengine: xgene-dma: move unmap to before callback
Completion callback should happen after dma_descriptor_unmap() has happened. This allow the cache invalidate to happen and ensure that the data accessed by the upper layer is in memory that was from DMA rather than stale data. On some architecture this is done by the hardware, however we should make the code consistent to not cause confusion. Signed-off-by: Dave Jiang <dave.jiang@intel.com> Cc: Rameshwar Prasad Sahu <rsahu@apm.com> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
This commit is contained in:
Родитель
ed9f2c5896
Коммит
fd3c69bd19
|
@ -606,12 +606,11 @@ static void xgene_dma_run_tx_complete_actions(struct xgene_dma_chan *chan,
|
|||
return;
|
||||
|
||||
dma_cookie_complete(tx);
|
||||
dma_descriptor_unmap(tx);
|
||||
|
||||
/* Run the link descriptor callback function */
|
||||
dmaengine_desc_get_callback_invoke(tx, NULL);
|
||||
|
||||
dma_descriptor_unmap(tx);
|
||||
|
||||
/* Run any dependencies */
|
||||
dma_run_dependencies(tx);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче