diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2013-05-07 09:06:00 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2013-07-04 17:42:45 +0200 |
commit | 46637be269aaaceb9867ffdf176e906401138fff (patch) | |
tree | d4c5015e1ac35793959bef900fde1c0d8891cdaf /include/exec | |
parent | 803c0816a7d3ab35460991ba5b7d1fccc070332b (diff) |
memory: add ref/unref
Reviewed-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/exec')
-rw-r--r-- | include/exec/memory.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/include/exec/memory.h b/include/exec/memory.h index 2f3e8e426d..d2466a7a97 100644 --- a/include/exec/memory.h +++ b/include/exec/memory.h @@ -247,6 +247,36 @@ void memory_region_init(MemoryRegion *mr, struct Object *owner, const char *name, uint64_t size); + +/** + * memory_region_ref: Add 1 to a memory region's reference count + * + * Whenever memory regions are accessed outside the BQL, they need to be + * preserved against hot-unplug. MemoryRegions actually do not have their + * own reference count; they piggyback on a QOM object, their "owner". + * This function adds a reference to the owner. + * + * All MemoryRegions must have an owner if they can disappear, even if the + * device they belong to operates exclusively under the BQL. This is because + * the region could be returned at any time by memory_region_find, and this + * is usually under guest control. + * + * @mr: the #MemoryRegion + */ +void memory_region_ref(MemoryRegion *mr); + +/** + * memory_region_unref: Remove 1 to a memory region's reference count + * + * Whenever memory regions are accessed outside the BQL, they need to be + * preserved against hot-unplug. MemoryRegions actually do not have their + * own reference count; they piggyback on a QOM object, their "owner". + * This function removes a reference to the owner and possibly destroys it. + * + * @mr: the #MemoryRegion + */ +void memory_region_unref(MemoryRegion *mr); + /** * memory_region_init_io: Initialize an I/O memory region. * |