Can I send data via Infiniband without using a DMA-controller and what the smallest size of packages can I send?
That is, can I directly access to the memory of the remote CPU2-RAM from current CPU1-Core by using simple pointer (i.e. only x86-asm: MOV...
sending data to PCI-Express BAR of Infiniband adapter) without DMA-controller?
An example, can I do something like this from CPU1:
unsigned char *rdma_ptr = get_rdma_pointer(CPU2);
rdma_ptr[3] = 111;