dftxbs3e / rpms / qemu

Forked from rpms/qemu 3 years ago
Clone
5544c1b
From 720192d056402f47a8f71d9ac9bc4b0cf37902ed Mon Sep 17 00:00:00 2001
93b7e38
From: Alon Levy <alevy@redhat.com>
93b7e38
Date: Wed, 12 Sep 2012 16:13:27 +0300
5544c1b
Subject: [PATCH] qxl: add trace-event for QXL_IO_LOG
93b7e38
93b7e38
Signed-off-by: Alon Levy <alevy@redhat.com>
93b7e38
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
93b7e38
---
93b7e38
 hw/qxl.c     | 1 +
93b7e38
 trace-events | 1 +
93b7e38
 2 files changed, 2 insertions(+)
93b7e38
93b7e38
diff --git a/hw/qxl.c b/hw/qxl.c
93b7e38
index 360f4f6..1ef117a 100644
93b7e38
--- a/hw/qxl.c
93b7e38
+++ b/hw/qxl.c
93b7e38
@@ -1515,6 +1515,7 @@ async_common:
93b7e38
         qxl_set_mode(d, val, 0);
93b7e38
         break;
93b7e38
     case QXL_IO_LOG:
93b7e38
+        trace_qxl_io_log(d->id, d->ram->log_buf);
93b7e38
         if (d->guestdebug) {
93b7e38
             fprintf(stderr, "qxl/guest-%d: %" PRId64 ": %s", d->id,
93b7e38
                     qemu_get_clock_ns(vm_clock), d->ram->log_buf);
93b7e38
diff --git a/trace-events b/trace-events
5544c1b
index aa79836..80a52d9 100644
93b7e38
--- a/trace-events
93b7e38
+++ b/trace-events
5544c1b
@@ -930,6 +930,7 @@ qxl_interface_update_area_complete_rest(int qid, uint32_t num_updated_rects) "%d
93b7e38
 qxl_interface_update_area_complete_overflow(int qid, int max) "%d max=%d"
93b7e38
 qxl_interface_update_area_complete_schedule_bh(int qid, uint32_t num_dirty) "%d #dirty=%d"
93b7e38
 qxl_io_destroy_primary_ignored(int qid, const char *mode) "%d %s"
93b7e38
+qxl_io_log(int qid, const uint8_t *str) "%d %s"
93b7e38
 qxl_io_read_unexpected(int qid) "%d"
93b7e38
 qxl_io_unexpected_vga_mode(int qid, uint64_t addr, uint64_t val, const char *desc) "%d 0x%"PRIx64"=%"PRIu64" (%s)"
93b7e38
 qxl_io_write(int qid, const char *mode, uint64_t addr, uint64_t val, unsigned size, int async) "%d %s addr=%"PRIu64 " val=%"PRIu64" size=%u async=%d"
93b7e38
-- 
5544c1b
1.7.12.1
93b7e38