diff options
author | David Vrabel <david.vrabel@citrix.com> | 2014-12-10 14:48:43 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-01-29 17:40:57 -0800 |
commit | 34dcc70b3eaf4e560b37001a56c3b4e36a014d54 (patch) | |
tree | 04b0fbff5ebe0364517f6ba0a44c781a37441595 | |
parent | 1e7b244364ef7a62ea736fb7aaa4139397e2f1fd (diff) | |
download | lwn-34dcc70b3eaf4e560b37001a56c3b4e36a014d54.tar.gz lwn-34dcc70b3eaf4e560b37001a56c3b4e36a014d54.zip |
Revert "swiotlb-xen: pass dev_addr to swiotlb_tbl_unmap_single"
commit dbdd74763f1faf799fbb9ed30423182e92919378 upstream.
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>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-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 301b08496478..1d94316f0ea4 100644 --- a/drivers/xen/swiotlb-xen.c +++ b/drivers/xen/swiotlb-xen.c @@ -390,7 +390,7 @@ static void xen_unmap_single(struct device *hwdev, dma_addr_t dev_addr, /* NOTE: We use dev_addr here, not paddr! */ if (is_xen_swiotlb_buffer(dev_addr)) { - swiotlb_tbl_unmap_single(hwdev, dev_addr, size, dir); + swiotlb_tbl_unmap_single(hwdev, paddr, size, dir); return; } |