Re: [Qemu-devel] [PATCH 1/1] memory: add name in AddressSpace initialization.

2013-01-08 Thread Alexander Barabash
On 01/08/2013 04:00 PM, Anthony Liguori wrote: Alexander Barabash writes: Pass the AddressSpace's name (to be used for debugging) to address_space_init(). If NULL is passed, the name of root memory region is used instead. @@ -1784,13 +1784,11 @@ static void memory_map_init(void) ... m

Re: [Qemu-devel] [PATCH 1/1] memory: add name in AddressSpace initialization.

2013-01-08 Thread Anthony Liguori
Alexander Barabash writes: > Pass the AddressSpace's name (to be used for debugging) > to address_space_init(). If NULL is passed, the name > of root memory region is used instead. > > Signed-off-by: Alexander Barabash > --- > exec.c|6 ++ > hw/pci/pci.c |3

[Qemu-devel] [PATCH 1/1] memory: add name in AddressSpace initialization.

2013-01-08 Thread Alexander Barabash
Pass the AddressSpace's name (to be used for debugging) to address_space_init(). If NULL is passed, the name of root memory region is used instead. Signed-off-by: Alexander Barabash --- exec.c|6 ++ hw/pci/pci.c |3 ++- include/exec/memory.h |5 +++-- mem