mirror of
https://github.com/xemu-project/xemu.git
synced 2025-03-03 18:17:22 +00:00
memory: Do not print empty PIO root
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
parent
4b474ba7a1
commit
066318109f
9
memory.c
9
memory.c
@ -1360,7 +1360,10 @@ void mtree_info(fprintf_function mon_printf, void *f)
|
||||
g_free(ml2);
|
||||
}
|
||||
|
||||
QTAILQ_INIT(&ml_head);
|
||||
mon_printf(f, "I/O\n");
|
||||
mtree_print_mr(mon_printf, f, address_space_io.root, 0, 0, &ml_head);
|
||||
if (address_space_io.root &&
|
||||
!QTAILQ_EMPTY(&address_space_io.root->subregions)) {
|
||||
QTAILQ_INIT(&ml_head);
|
||||
mon_printf(f, "I/O\n");
|
||||
mtree_print_mr(mon_printf, f, address_space_io.root, 0, 0, &ml_head);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user