Skip to content

Commit fdfdd01

Browse files
Kexin Sunjgross1
authored andcommitted
xen/swiotlb: fix stale reference to swiotlb_unmap_page()
Commit af85de5 ("xen: swiotlb: Switch to physical address mapping callbacks") renamed xen_swiotlb_unmap_page() to xen_swiotlb_unmap_phys(). The comment in xen_swiotlb_unmap_sg() had already been missing the xen_ prefix (reading swiotlb_unmap_page()), and the rename only changed _page to _phys without correcting this, leaving it as swiotlb_unmap_phys(). Fix the reference to use the correct function name xen_swiotlb_unmap_phys(). Assisted-by: unnamed:deepseek-v3.2 coccinelle Signed-off-by: Kexin Sun <kexinsun@smail.nju.edu.cn> Signed-off-by: Juergen Gross <jgross@suse.com> Message-ID: <20260321110039.8905-1-kexinsun@smail.nju.edu.cn>
1 parent 7f8862d commit fdfdd01

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/xen/swiotlb-xen.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ xen_swiotlb_sync_single_for_device(struct device *dev, dma_addr_t dma_addr,
340340

341341
/*
342342
* Unmap a set of streaming mode DMA translations. Again, cpu read rules
343-
* concerning calls here are the same as for swiotlb_unmap_phys() above.
343+
* concerning calls here are the same as for xen_swiotlb_unmap_phys() above.
344344
*/
345345
static void
346346
xen_swiotlb_unmap_sg(struct device *hwdev, struct scatterlist *sgl, int nelems,

0 commit comments

Comments
 (0)