]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/commitdiff
swiotlb-xen: pass dev_addr to swiotlb_tbl_unmap_single
authorStefano Stabellini <stefano.stabellini@eu.citrix.com>
Fri, 21 Nov 2014 16:56:12 +0000 (16:56 +0000)
committerDavid Vrabel <david.vrabel@citrix.com>
Thu, 4 Dec 2014 12:41:57 +0000 (12:41 +0000)
Need to pass the pointer within the swiotlb internal buffer to the
swiotlb library, that in the case of xen_unmap_single is dev_addr, not
paddr.

Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Acked-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
CC: stable@vger.kernel.org
drivers/xen/swiotlb-xen.c

index 810ad419e34ca76ef3f2d0444e789d579dea1b9e..5ea1e3c1090710da53181997cad17480c02b4e50 100644 (file)
@@ -451,7 +451,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, paddr, size, dir);
+               swiotlb_tbl_unmap_single(hwdev, dev_addr, size, dir);
                return;
        }