One letter changes the boundary
The R in RDMA means Remote. RDMA commonly relies on a local NIC DMA engine, but adds network transport, memory registration, queues, and remote protection semantics. An arbitrary PCIe DMA device is not therefore an RDMA device.
01
DMA is a local I/O mechanism
Storage controllers, network adapters, and graphics devices can use DMA to exchange data with memory in one host. The operating-system driver prepares buffers, creates device mappings, submits descriptors, and reclaims resources.
IOMMU and DMA remapping can confine that device to approved address ranges. No second computer is required, and local DMA does not define a network protocol for remote access.
02
What RDMA adds across a network
RDMA targets high-throughput, low-latency communication with low CPU utilization. An RDMA-capable NIC exposes an RDMA interface, allowing data to be placed directly into registered application buffers with fewer intermediate copies.
Common transports include iWARP, InfiniBand, and RoCE. Their network requirements differ, but each relies on explicit connection, queue, memory-registration, and protection state.
03
Comparing the two data paths
A conventional NIC DMA path connects local memory, the PCIe adapter, and network frames; the remote host then processes those frames through its networking stack. RDMA lets an adapter place data into a remote registered region according to protocol and authorization state.
An RDMA adapter can still use DMA internally for local memory, so the terms are related rather than interchangeable: DMA is a lower-level data-movement capability, while RDMA is a communication model with network and memory-protection semantics.
04
RDMA still requires memory protection
Direct does not mean permission-free. Applications register memory for RDMA use, and adapters plus software maintain access keys, queues, and connection state that constrain operations to authorized regions.
Network access control, identity, and encryption requirements also remain. Microsoft SMB Direct can combine RDMA with SMB encryption on supported systems, showing that a performance path and data protection must be designed together.
05
Choosing the correct term
If the question is how a local PCIe device reaches host buffers, discuss DMA addresses, descriptors, mappings, and IOMMU. If it is how servers transfer into registered memory at low latency, discuss RDMA, RNICs, queues, and network transport.
A 10GbE link, fiber cable, or two computers does not prove RDMA is active. Hardware capability, driver support, operating-system interfaces, and an end-to-end supported configuration are all required.
FAQ
Frequently asked questions
01Does RDMA use no CPU at all?
No. It greatly reduces CPU work for copying and protocol processing, but CPUs still manage connections, submit work, process completions, and run application logic.
02Does every high-speed Ethernet adapter support RDMA?
No. Link speed does not establish RDMA capability; verify the adapter, driver, and operating-system support.
03Does RDMA bypass the IOMMU?
It should not be understood that way. An RNIC's local device access remains part of the platform DMA security model and requires valid mappings and permissions.
04How does SMB Direct relate to regular SMB?
SMB Direct lets SMB use RDMA for lower latency, lower CPU use, and high throughput when supported; Windows retains protocol negotiation and fallback behavior.
SOURCES
