diff options
author | David Vrabel <david.vrabel@citrix.com> | 2014-12-10 09:48:43 -0500 |
---|---|---|
committer | David Vrabel <david.vrabel@citrix.com> | 2014-12-11 07:05:01 -0500 |
commit | dbdd74763f1faf799fbb9ed30423182e92919378 (patch) | |
tree | 8278f04e3bb19bfcab68bfe12557cf579c40025b | |
parent | 76f0a486faa8d22aa4b3ef482fd97a230d981d68 (diff) |
Revert "swiotlb-xen: pass dev_addr to swiotlb_tbl_unmap_single"
This reverts commit 2c3fc8d26dd09b9d7069687eead849ee81c78e46.
This commit broke on x86 PV because entries in the generic SWIOTLB are
indexed using (pseudo-)physical address not DMA address and these are
not the same in a x86 PV guest.
Signed-off-by: David Vrabel <david.vrabel@citrix.com>
Reviewed-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
-rw-r--r-- | drivers/xen/swiotlb-xen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/xen/swiotlb-xen.c b/drivers/xen/swiotlb-xen.c index 5ea1e3c10907..810ad419e34c 100644 --- a/drivers/xen/swiotlb-xen.c +++ b/drivers/xen/swiotlb-xen.c | |||
@@ -451,7 +451,7 @@ static void xen_unmap_single(struct device *hwdev, dma_addr_t dev_addr, | |||
451 | 451 | ||
452 | /* NOTE: We use dev_addr here, not paddr! */ | 452 | /* NOTE: We use dev_addr here, not paddr! */ |
453 | if (is_xen_swiotlb_buffer(dev_addr)) { | 453 | if (is_xen_swiotlb_buffer(dev_addr)) { |
454 | swiotlb_tbl_unmap_single(hwdev, dev_addr, size, dir); | 454 | swiotlb_tbl_unmap_single(hwdev, paddr, size, dir); |
455 | return; | 455 | return; |
456 | } | 456 | } |
457 | 457 | ||