• Jiasen Lin's avatar
    NTB: ntb_perf: Fix address err in perf_copy_chunk · 99a06056
    Jiasen Lin authored
    peer->outbuf is a virtual address which is get by ioremap, it can not
    be converted to a physical address by virt_to_page and page_to_phys.
    This conversion will result in DMA error, because the destination address
    which is converted by page_to_phys is invalid.
    
    This patch save the MMIO address of NTB BARx in perf_setup_peer_mw,
    and map the BAR space to DMA address after we assign the DMA channel.
    Then fill the destination address of DMA descriptor with this DMA address
    to guarantee that the address of memory write requests fall into
    memory window of NBT BARx with IOMMU enabled and disabled.
    
    Fixes: 5648e56d ("NTB: ntb_perf: Add full multi-port NTB API support")
    Signed-off-by: default avatarJiasen Lin <linjiasen@hygon.cn>
    Reviewed-by: default avatarLogan Gunthorpe <logang@deltatee.com>
    Signed-off-by: default avatarJon Mason <jdmason@kudzu.us>
    99a06056
ntb_perf.c 38.3 KB