]>
Commit | Line | Data |
---|---|---|
87e0331c | 1 | # See docs/devel/tracing.txt for syntax documentation. |
270ab88f | 2 | |
500016e5 | 3 | # vhost.c |
ade6d081 | 4 | vhost_commit(bool started, bool changed) "Started: %d Changed: %d" |
48d7c975 | 5 | vhost_region_add_section(const char *name, uint64_t gpa, uint64_t size, uint64_t host) "%s: 0x%"PRIx64"+0x%"PRIx64" @ 0x%"PRIx64 |
c1ece84e DDAG |
6 | vhost_region_add_section_merge(const char *name, uint64_t new_size, uint64_t gpa, uint64_t owr) "%s: size: 0x%"PRIx64 " gpa: 0x%"PRIx64 " owr: 0x%"PRIx64 |
7 | vhost_region_add_section_aligned(const char *name, uint64_t gpa, uint64_t size, uint64_t host) "%s: 0x%"PRIx64"+0x%"PRIx64" @ 0x%"PRIx64 | |
aa3c40f6 | 8 | vhost_section(const char *name, int r) "%s:%d" |
ffcbbe72 | 9 | vhost_iotlb_miss(void *dev, int step) "%p step %d" |
48d7c975 | 10 | |
500016e5 | 11 | # vhost-user.c |
46343570 DDAG |
12 | vhost_user_postcopy_end_entry(void) "" |
13 | vhost_user_postcopy_end_exit(void) "" | |
375318d0 DDAG |
14 | vhost_user_postcopy_fault_handler(const char *name, uint64_t fault_address, int nregions) "%s: @0x%"PRIx64" nregions:%d" |
15 | vhost_user_postcopy_fault_handler_loop(int i, uint64_t client_base, uint64_t size) "%d: client 0x%"PRIx64" +0x%"PRIx64 | |
16 | vhost_user_postcopy_fault_handler_found(int i, uint64_t region_offset, uint64_t rb_offset) "%d: region_offset: 0x%"PRIx64" rb_offset:0x%"PRIx64 | |
6864a7b5 | 17 | vhost_user_postcopy_listen(void) "" |
9bb38019 | 18 | vhost_user_set_mem_table_postcopy(uint64_t client_addr, uint64_t qhva, int reply_i, int region_i) "client:0x%"PRIx64" for hva: 0x%"PRIx64" reply %d region %d" |
905125d0 | 19 | vhost_user_set_mem_table_withfd(int index, const char *name, uint64_t memory_size, uint64_t guest_phys_addr, uint64_t userspace_addr, uint64_t offset) "%d:%s: size:0x%"PRIx64" GPA:0x%"PRIx64" QVA/userspace:0x%"PRIx64" RB offset:0x%"PRIx64 |
c07e3615 DDAG |
20 | vhost_user_postcopy_waker(const char *rb, uint64_t rb_offset) "%s + 0x%"PRIx64 |
21 | vhost_user_postcopy_waker_found(uint64_t client_addr) "0x%"PRIx64 | |
22 | vhost_user_postcopy_waker_nomatch(const char *rb, uint64_t rb_offset) "%s + 0x%"PRIx64 | |
6864a7b5 | 23 | |
500016e5 | 24 | # virtio.c |
b0ac429f | 25 | virtqueue_alloc_element(void *elem, size_t sz, unsigned in_num, unsigned out_num) "elem %p size %zd in_num %u out_num %u" |
270ab88f DB |
26 | virtqueue_fill(void *vq, const void *elem, unsigned int len, unsigned int idx) "vq %p elem %p len %u idx %u" |
27 | virtqueue_flush(void *vq, unsigned int count) "vq %p count %u" | |
28 | virtqueue_pop(void *vq, void *elem, unsigned int in_num, unsigned int out_num) "vq %p elem %p in_num %u out_num %u" | |
29 | virtio_queue_notify(void *vdev, int n, void *vq) "vdev %p n %d vq %p" | |
83d768b5 | 30 | virtio_notify_irqfd(void *vdev, void *vq) "vdev %p vq %p" |
270ab88f DB |
31 | virtio_notify(void *vdev, void *vq) "vdev %p vq %p" |
32 | virtio_set_status(void *vdev, uint8_t val) "vdev %p val %u" | |
33 | ||
500016e5 | 34 | # virtio-rng.c |
270ab88f | 35 | virtio_rng_guest_not_ready(void *rng) "rng %p: guest not ready" |
a23a6d18 LV |
36 | virtio_rng_cpu_is_stopped(void *rng, int size) "rng %p: cpu is stopped, dropping %d bytes" |
37 | virtio_rng_popped(void *rng) "rng %p: elem popped" | |
270ab88f DB |
38 | virtio_rng_pushed(void *rng, size_t len) "rng %p: %zd bytes pushed" |
39 | virtio_rng_request(void *rng, size_t size, unsigned quota) "rng %p: %zd bytes requested, %u bytes quota left" | |
a23a6d18 | 40 | virtio_rng_vm_state_change(void *rng, int running, int state) "rng %p: state change to running %d state %d" |
270ab88f | 41 | |
500016e5 | 42 | # virtio-balloon.c |
f2fd57db | 43 | # |
8908eb1a VSO |
44 | virtio_balloon_bad_addr(uint64_t gpa) "0x%"PRIx64 |
45 | virtio_balloon_handle_output(const char *name, uint64_t gpa) "section name: %s gpa: 0x%"PRIx64 | |
331f5eb2 DB |
46 | virtio_balloon_get_config(uint32_t num_pages, uint32_t actual) "num_pages: %d actual: %d" |
47 | virtio_balloon_set_config(uint32_t actual, uint32_t oldactual) "actual: %d oldactual: %d" | |
8908eb1a | 48 | virtio_balloon_to_target(uint64_t target, uint32_t num_pages) "balloon target: 0x%"PRIx64" num_pages: %d" |
da1804d1 BL |
49 | |
50 | # virtio-mmio.c | |
51 | virtio_mmio_read(uint64_t offset) "virtio_mmio_read offset 0x%" PRIx64 | |
52 | virtio_mmio_write_offset(uint64_t offset, uint64_t value) "virtio_mmio_write offset 0x%" PRIx64 " value 0x%" PRIx64 | |
53 | virtio_mmio_guest_page(uint64_t size, int shift) "guest page size 0x%" PRIx64 " shift %d" | |
54 | virtio_mmio_queue_write(uint64_t value, int max_size) "mmio_queue write 0x%" PRIx64 " max %d" | |
55 | virtio_mmio_setting_irq(int level) "virtio_mmio setting IRQ %d" |