diff options
author | Alexander Duyck <alexander.h.duyck@intel.com> | 2012-10-15 13:19:49 -0400 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2012-10-30 09:32:07 -0400 |
commit | fbfda893eb570bbe9e9ad9128b6e9cf2a1e48c87 (patch) | |
tree | c79485f1cec2861db3f86852629c19d32fda30bd /drivers/xen | |
parent | 61ca08c3220032dd88815b3465d56cb779258168 (diff) |
swiotlb: Use physical addresses instead of virtual in swiotlb_tbl_sync_single
This change makes it so that the sync functionality also uses physical
addresses. This helps to further reduce the use of virt_to_phys and
phys_to_virt functions.
In order to clarify things since we now have 2 physical addresses in use
inside of swiotlb_tbl_sync_single I am renaming phys to orig_addr, and
dma_addr to tlb_addr. This way is should be clear that orig_addr is
contained within io_orig_addr and tlb_addr is an address within the
io_tlb_addr buffer.
Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers/xen')
-rw-r--r-- | drivers/xen/swiotlb-xen.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/xen/swiotlb-xen.c b/drivers/xen/swiotlb-xen.c index 4cedc284b5df..af47e7594460 100644 --- a/drivers/xen/swiotlb-xen.c +++ b/drivers/xen/swiotlb-xen.c | |||
@@ -433,8 +433,7 @@ xen_swiotlb_sync_single(struct device *hwdev, dma_addr_t dev_addr, | |||
433 | 433 | ||
434 | /* NOTE: We use dev_addr here, not paddr! */ | 434 | /* NOTE: We use dev_addr here, not paddr! */ |
435 | if (is_xen_swiotlb_buffer(dev_addr)) { | 435 | if (is_xen_swiotlb_buffer(dev_addr)) { |
436 | swiotlb_tbl_sync_single(hwdev, phys_to_virt(paddr), size, dir, | 436 | swiotlb_tbl_sync_single(hwdev, paddr, size, dir, target); |
437 | target); | ||
438 | return; | 437 | return; |
439 | } | 438 | } |
440 | 439 | ||