pub unsafe extern "C" fn memory_region_add_coalescing(
    mr: *mut MemoryRegion,
    offset: hwaddr,
    size: u64
)
Expand description

memory_region_add_coalescing: Enable memory coalescing for a sub-range of a region.

Like memory_region_set_coalescing(), but works on a sub-range of a region. Multiple calls can be issued coalesced disjoint ranges.

@mr: the memory region to be updated. @offset: the start of the range within the region to be coalesced. @size: the size of the subrange to be coalesced.