pub struct DmaMappedBuffer {
pub virt_addr: usize,
pub dma_addr: u64,
pub size: usize,
pub coherency: DmaCoherency,
pub direction: DmaDirection,
}Expand description
A DMA-mapped buffer with coherency and direction tracking.
Fields§
§virt_addr: usizeVirtual address of the buffer.
dma_addr: u64Physical address for DMA (may differ from actual phys with IOMMU).
size: usizeBuffer size in bytes.
coherency: DmaCoherencyCoherency policy.
direction: DmaDirectionTransfer direction.