diff options
| author | Alexey Kardashevskiy <aik@ozlabs.ru> | 2017-09-21 18:51:06 +1000 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2017-09-21 23:19:38 +0200 |
| commit | 5e8fd947e2670c3c18f139de6a83fafcb56abbcc (patch) | |
| tree | 217c4d74ee2446675d016cab1653aba70a63084c /include/exec/memory.h | |
| parent | 67ace39b253ed5ae465275bc870f7e495547658b (diff) | |
| download | focaccia-qemu-5e8fd947e2670c3c18f139de6a83fafcb56abbcc.tar.gz focaccia-qemu-5e8fd947e2670c3c18f139de6a83fafcb56abbcc.zip | |
memory: Rework "info mtree" to print flat views and dispatch trees
This adds a new "-d" switch to "info mtree" to print dispatch tree internals. This changes the way "-f" is handled - it prints now flat views and associated address spaces. Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru> Message-Id: <20170921085110.25598-15-aik@ozlabs.ru> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/exec/memory.h')
| -rw-r--r-- | include/exec/memory.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/exec/memory.h b/include/exec/memory.h index 7816e5d655..2f4f56cf40 100644 --- a/include/exec/memory.h +++ b/include/exec/memory.h @@ -1515,7 +1515,8 @@ void memory_global_dirty_log_start(void); */ void memory_global_dirty_log_stop(void); -void mtree_info(fprintf_function mon_printf, void *f, bool flatview); +void mtree_info(fprintf_function mon_printf, void *f, bool flatview, + bool dispatch_tree); /** * memory_region_request_mmio_ptr: request a pointer to an mmio |