I want to use gpu direct rdma on jetson agx xavier.
So I am making a Linux kernel source by looking at an example.
But I have a few questions.
Is it correct to proceed in the following order to use cuda memory as dma?
Assign with cudaHostAlloc → cuPointerSetAttribute → nvidia_p2p_get_page → nvidia_p2p_dma_map_page
If I use the nvidia_p2p_dma_map_page function, can I get the physical address of the memory allocated by cudaHostAlloc?
(Is the hw_address variable in the struct nvidia_p2p_dma_mapping the physical address of the memory allocated by cudaHostAlloc?)
If hw_address is the physical address of the memory allocated by cudaHostAlloc, is it possible to write data to hw_address to write data to cudaDMA?
Why dmam_alloc_coherent in the GPUDirectRDMA example?
Shouldn’t nvidia_p2p_dma_map_page be used to use cudaDMA?