[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v7 02/13] memory: Helpers to copy/free a MemoryRegionSection
From: |
David Hildenbrand |
Subject: |
[PATCH v7 02/13] memory: Helpers to copy/free a MemoryRegionSection |
Date: |
Wed, 24 Feb 2021 10:48:58 +0100 |
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>
---
include/exec/memory.h | 20 ++++++++++++++++++++
softmmu/memory.c | 27 +++++++++++++++++++++++++++
2 files changed, 47 insertions(+)
diff --git a/include/exec/memory.h b/include/exec/memory.h
index 3ff36a9006..ad5e0d6278 100644
--- a/include/exec/memory.h
+++ b/include/exec/memory.h
@@ -1023,6 +1023,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
*
diff --git a/softmmu/memory.c b/softmmu/memory.c
index fa4f0fa4a3..edc6c8a29d 100644
--- a/softmmu/memory.c
+++ b/softmmu/memory.c
@@ -2693,6 +2693,33 @@ MemoryRegionSection memory_region_find(MemoryRegion *mr,
return ret;
}
+MemoryRegionSection *memory_region_section_new_copy(MemoryRegionSection *s)
+{
+ MemoryRegionSection *tmp = g_new(MemoryRegionSection, 1);
+
+ *tmp = *s;
+ if (tmp->mr) {
+ memory_region_ref(tmp->mr);
+ }
+ if (tmp->fv) {
+ bool ret = flatview_ref(tmp->fv);
+
+ g_assert(ret);
+ }
+ return tmp;
+}
+
+void memory_region_section_free_copy(MemoryRegionSection *s)
+{
+ if (s->fv) {
+ flatview_unref(s->fv);
+ }
+ if (s->mr) {
+ memory_region_unref(s->mr);
+ }
+ g_free(s);
+}
+
bool memory_region_present(MemoryRegion *container, hwaddr addr)
{
MemoryRegion *mr;
--
2.29.2
- [PATCH v7 00/13] virtio-mem: vfio support, David Hildenbrand, 2021/02/24
- [PATCH v7 01/13] memory: Introduce RamDiscardManager for RAM memory regions, David Hildenbrand, 2021/02/24
- [PATCH v7 02/13] memory: Helpers to copy/free a MemoryRegionSection,
David Hildenbrand <=
- [PATCH v7 03/13] virtio-mem: Factor out traversing unplugged ranges, David Hildenbrand, 2021/02/24
- [PATCH v7 04/13] virtio-mem: Don't report errors when ram_block_discard_range() fails, David Hildenbrand, 2021/02/24
- [PATCH v7 05/13] virtio-mem: Implement RamDiscardManager interface, David Hildenbrand, 2021/02/24
- [PATCH v7 06/13] vfio: Support for RamDiscardManager in the !vIOMMU case, David Hildenbrand, 2021/02/24
- [PATCH v7 07/13] vfio: Query and store the maximum number of possible DMA mappings, David Hildenbrand, 2021/02/24
- [PATCH v7 09/13] vfio: Support for RamDiscardManager in the vIOMMU case, David Hildenbrand, 2021/02/24
- [PATCH v7 10/13] softmmu/physmem: Don't use atomic operations in ram_block_discard_(disable|require), David Hildenbrand, 2021/02/24
- [PATCH v7 11/13] softmmu/physmem: Extend ram_block_discard_(require|disable) by two discard types, David Hildenbrand, 2021/02/24
- [PATCH v7 08/13] vfio: Sanity check maximum number of DMA mappings with RamDiscardManager, David Hildenbrand, 2021/02/24
- [PATCH v7 12/13] virtio-mem: Require only coordinated discards, David Hildenbrand, 2021/02/24