From: Stefano Stabellini Date: Fri, 21 Nov 2014 16:55:12 +0000 (+0000) Subject: swiotlb-xen: call xen_dma_sync_single_for_device when appropriate X-Git-Tag: v3.16.35~3286 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=53d6dc6ab95175572ab891584d48209ea7c3be56;p=thirdparty%2Fkernel%2Fstable.git swiotlb-xen: call xen_dma_sync_single_for_device when appropriate commit 9490c6c67e2f41760de8ece4e4f56f75f84ceb9e upstream. In xen_swiotlb_sync_single we always call xen_dma_sync_single_for_cpu, even when we should call xen_dma_sync_single_for_device. Fix that. Signed-off-by: Stefano Stabellini Acked-by: Konrad Rzeszutek Wilk Signed-off-by: Luis Henriques --- diff --git a/drivers/xen/swiotlb-xen.c b/drivers/xen/swiotlb-xen.c index f21282da98768..f3a9d831d0f90 100644 --- a/drivers/xen/swiotlb-xen.c +++ b/drivers/xen/swiotlb-xen.c @@ -500,7 +500,7 @@ xen_swiotlb_sync_single(struct device *hwdev, dma_addr_t dev_addr, swiotlb_tbl_sync_single(hwdev, paddr, size, dir, target); if (target == SYNC_FOR_DEVICE) - xen_dma_sync_single_for_cpu(hwdev, dev_addr, size, dir); + xen_dma_sync_single_for_device(hwdev, dev_addr, size, dir); if (dir != DMA_FROM_DEVICE) return;