Browse Source
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>pull/45/merge
committed by
Stefan Hajnoczi
3 changed files with 14 additions and 10 deletions
@ -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" |
|||
Loading…
Reference in new issue