diff options
author | Amit Shah <amit.shah@redhat.com> | 2014-08-04 16:22:44 +0530 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2014-08-12 14:29:55 +0100 |
commit | 4ac4458076e1aaf3b01a6361154117df20e22215 (patch) | |
tree | ada7e5d4c15c23f8b94aaa11a1079c74c531dfea /trace-events | |
parent | 6db8b538663b39c21e12e14e6437aa7f8435f316 (diff) | |
download | qemu-4ac4458076e1aaf3b01a6361154117df20e22215.tar.gz qemu-4ac4458076e1aaf3b01a6361154117df20e22215.tar.bz2 qemu-4ac4458076e1aaf3b01a6361154117df20e22215.zip |
virtio-rng: add some trace events
Add some trace events to virtio-rng for easier debugging
Signed-off-by: Amit Shah <amit.shah@redhat.com>
Reviewed-by: Amos Kong <akong@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'trace-events')
-rw-r--r-- | trace-events | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/trace-events b/trace-events index dcc33dd750..81bc915edd 100644 --- a/trace-events +++ b/trace-events @@ -41,6 +41,11 @@ virtio_irq(void *vq) "vq %p" virtio_notify(void *vdev, void *vq) "vdev %p vq %p" virtio_set_status(void *vdev, uint8_t val) "vdev %p val %u" +# hw/virtio/virtio-rng.c +virtio_rng_guest_not_ready(void *rng) "rng %p: guest not ready" +virtio_rng_pushed(void *rng, size_t len) "rng %p: %zd bytes pushed" +virtio_rng_request(void *rng, size_t size, unsigned quota) "rng %p: %zd bytes requested, %u bytes quota left" + # hw/char/virtio-serial-bus.c virtio_serial_send_control_event(unsigned int port, uint16_t event, uint16_t value) "port %u, event %u, value %u" virtio_serial_throttle_port(unsigned int port, bool throttle) "port %u, throttle %d" |