diff options
author | Paolo Bonzini | 2017-09-21 12:34:00 +0200 |
---|---|---|
committer | Paolo Bonzini | 2017-09-22 01:06:51 +0200 |
commit | 02d9651d6a46479e9d70b72dca34e43605d06cda (patch) | |
tree | bce2deed4461c2c0b6ec582826bae42ebb6f0bf6 /trace-events | |
parent | memory: Create FlatView directly (diff) | |
download | qemu-02d9651d6a46479e9d70b72dca34e43605d06cda.tar.gz qemu-02d9651d6a46479e9d70b72dca34e43605d06cda.tar.xz qemu-02d9651d6a46479e9d70b72dca34e43605d06cda.zip |
memory: trace FlatView creation and destruction
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'trace-events')
-rw-r--r-- | trace-events | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/trace-events b/trace-events index 1f50f56d9d..1d2eb5d3e4 100644 --- a/trace-events +++ b/trace-events @@ -64,6 +64,9 @@ memory_region_tb_read(int cpu_index, uint64_t addr, uint64_t value, unsigned siz memory_region_tb_write(int cpu_index, uint64_t addr, uint64_t value, unsigned size) "cpu %d addr 0x%"PRIx64" value 0x%"PRIx64" size %u" memory_region_ram_device_read(int cpu_index, void *mr, uint64_t addr, uint64_t value, unsigned size) "cpu %d mr %p addr 0x%"PRIx64" value 0x%"PRIx64" size %u" memory_region_ram_device_write(int cpu_index, void *mr, uint64_t addr, uint64_t value, unsigned size) "cpu %d mr %p addr 0x%"PRIx64" value 0x%"PRIx64" size %u" +flatview_new(FlatView *view, MemoryRegion *root) "%p (root %p)" +flatview_destroy(FlatView *view, MemoryRegion *root) "%p (root %p)" +flatview_destroy_rcu(FlatView *view, MemoryRegion *root) "%p (root %p)" ### Guest events, keep at bottom |