memory: Lazy init name from QOM name as needed
authorPeter Crosthwaite <peter.crosthwaite@xilinx.com>
Tue, 26 Aug 2014 03:10:24 +0000 (20:10 -0700)
committerPaolo Bonzini <pbonzini@redhat.com>
Thu, 28 Aug 2014 14:09:44 +0000 (16:09 +0200)
commitd1dd32af6f37e5bb8e6b2024d07fce74f510a668
tree9f706f24acca0363cee8640880771c829c59b540
parent3e1f50867b6872130cc19b7eadd93ab9ce268cdc
memory: Lazy init name from QOM name as needed

To support name retrieval of MemoryRegions that were created
dynamically (that is, not via memory_region_init and friends). We
cache the name in MemoryRegion's state as
object_get_canonical_path_component mallocs the returned value
so it's not suitable for direct return to callers. Memory already
frees the name field, so this will be garbage collected along with
the MR object.

Signed-off-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
memory.c