Function panda_sys::memory_region_init_iommu[][src]

pub unsafe extern "C" fn memory_region_init_iommu(
    mr: *mut MemoryRegion,
    owner: *mut Object,
    ops: *const MemoryRegionIOMMUOps,
    name: *const c_char,
    size: u64
)
Expand description

memory_region_init_iommu: Initialize a memory region that translates addresses

An IOMMU region translates addresses and forwards accesses to a target memory region.

@mr: the #MemoryRegion to be initialized @owner: the object that tracks the region’s reference count @ops: a function that translates addresses into the @target region @name: used for debugging; not visible to the user or ABI @size: size of the region.