diff options
| author | Stefan Hajnoczi <stefanha@redhat.com> | 2017-06-05 11:42:15 +0100 |
|---|---|---|
| committer | Stefan Hajnoczi <stefanha@redhat.com> | 2017-06-13 14:35:10 +0100 |
| commit | 79cad8b46ba79116ded5690ea2e265585bb9cb53 (patch) | |
| tree | 7e07e694d5f739cdd0a83dd67d1944b80cefcc32 /monitor.c | |
| parent | 9746211baa6ff1275e9c726c6f3a3bcfe4b1f8bd (diff) | |
| download | focaccia-qemu-79cad8b46ba79116ded5690ea2e265585bb9cb53.tar.gz focaccia-qemu-79cad8b46ba79116ded5690ea2e265585bb9cb53.zip | |
monitor: add handle_hmp_command trace event
It is often useful to correlate QEMU-internal events with monitor commands that caused them. Trace the full HMP command being executed. Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Message-id: 20170605104216.22429-2-stefanha@redhat.com Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'monitor.c')
| -rw-r--r-- | monitor.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/monitor.c b/monitor.c index 1e63ace2d4..11de403edf 100644 --- a/monitor.c +++ b/monitor.c @@ -3088,6 +3088,8 @@ static void handle_hmp_command(Monitor *mon, const char *cmdline) QDict *qdict; const mon_cmd_t *cmd; + trace_handle_hmp_command(mon, cmdline); + cmd = monitor_parse_command(mon, &cmdline, mon->cmd_table); if (!cmd) { return; |