mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
memory: Helpers to copy/free a MemoryRegionSection
In case one wants to create a permanent copy of a MemoryRegionSections, one needs access to flatview_ref()/flatview_unref(). Instead of exposing these, let's just add helpers to copy/free a MemoryRegionSection and properly adjust references. Cc: Paolo Bonzini <pbonzini@redhat.com> Cc: "Michael S. Tsirkin" <mst@redhat.com> Cc: Alex Williamson <alex.williamson@redhat.com> Cc: Dr. David Alan Gilbert <dgilbert@redhat.com> Cc: Igor Mammedov <imammedo@redhat.com> Cc: Pankaj Gupta <pankaj.gupta.linux@gmail.com> Cc: Peter Xu <peterx@redhat.com> Cc: Auger Eric <eric.auger@redhat.com> Cc: Wei Yang <richard.weiyang@linux.alibaba.com> Cc: teawater <teawaterz@linux.alibaba.com> Cc: Marek Kedzierski <mkedzier@redhat.com> Signed-off-by: David Hildenbrand <david@redhat.com> Message-Id: <20210413095531.25603-3-david@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
parent
8947d7fc4e
commit
228438384e
2 changed files with 47 additions and 0 deletions
|
@ -1066,6 +1066,26 @@ static inline bool MemoryRegionSection_eq(MemoryRegionSection *a,
|
|||
a->nonvolatile == b->nonvolatile;
|
||||
}
|
||||
|
||||
/**
|
||||
* memory_region_section_new_copy: Copy a memory region section
|
||||
*
|
||||
* Allocate memory for a new copy, copy the memory region section, and
|
||||
* properly take a reference on all relevant members.
|
||||
*
|
||||
* @s: the #MemoryRegionSection to copy
|
||||
*/
|
||||
MemoryRegionSection *memory_region_section_new_copy(MemoryRegionSection *s);
|
||||
|
||||
/**
|
||||
* memory_region_section_new_copy: Free a copied memory region section
|
||||
*
|
||||
* Free a copy of a memory section created via memory_region_section_new_copy().
|
||||
* properly dropping references on all relevant members.
|
||||
*
|
||||
* @s: the #MemoryRegionSection to copy
|
||||
*/
|
||||
void memory_region_section_free_copy(MemoryRegionSection *s);
|
||||
|
||||
/**
|
||||
* memory_region_init: Initialize a memory region
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue