diff options
author | Daniel P. Berrange | 2017-01-25 17:14:12 +0100 |
---|---|---|
committer | Stefan Hajnoczi | 2017-01-31 18:11:17 +0100 |
commit | 1416f9ea6d780e72632cccdc17721e11680b98b2 (patch) | |
tree | 5c453c5891c7ec1fc7c89b3ba87345d5b8078bf2 /hw/xen/trace-events | |
parent | trace: move hw/block/dataplane events to correct subdir (diff) | |
download | qemu-1416f9ea6d780e72632cccdc17721e11680b98b2.tar.gz qemu-1416f9ea6d780e72632cccdc17721e11680b98b2.tar.xz qemu-1416f9ea6d780e72632cccdc17721e11680b98b2.zip |
trace: move hw/xen events to correct subdir
The trace-events for a given source file should generally
always live in the same directory as the source file.
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Message-id: 20170125161417.31949-4-berrange@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'hw/xen/trace-events')
-rw-r--r-- | hw/xen/trace-events | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/hw/xen/trace-events b/hw/xen/trace-events new file mode 100644 index 0000000000..c4fb6f1aea --- /dev/null +++ b/hw/xen/trace-events @@ -0,0 +1,13 @@ +# See docs/tracing.txt for syntax documentation. + +# include/hw/xen/xen_common.h +xen_default_ioreq_server(void) "" +xen_ioreq_server_create(uint32_t id) "id: %u" +xen_ioreq_server_destroy(uint32_t id) "id: %u" +xen_ioreq_server_state(uint32_t id, bool enable) "id: %u: enable: %i" +xen_map_mmio_range(uint32_t id, uint64_t start_addr, uint64_t end_addr) "id: %u start: %#"PRIx64" end: %#"PRIx64 +xen_unmap_mmio_range(uint32_t id, uint64_t start_addr, uint64_t end_addr) "id: %u start: %#"PRIx64" end: %#"PRIx64 +xen_map_portio_range(uint32_t id, uint64_t start_addr, uint64_t end_addr) "id: %u start: %#"PRIx64" end: %#"PRIx64 +xen_unmap_portio_range(uint32_t id, uint64_t start_addr, uint64_t end_addr) "id: %u start: %#"PRIx64" end: %#"PRIx64 +xen_map_pcidev(uint32_t id, uint8_t bus, uint8_t dev, uint8_t func) "id: %u bdf: %02x.%02x.%02x" +xen_unmap_pcidev(uint32_t id, uint8_t bus, uint8_t dev, uint8_t func) "id: %u bdf: %02x.%02x.%02x" |