mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
qmp: Add more tracepoints
Add tracepoints for in-band request enqueue and dequeue, processing of queued in-band errors, and responses. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20210201161504.1976989-3-armbru@redhat.com> Reviewed-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
395a95080a
commit
f680405f45
2 changed files with 11 additions and 0 deletions
|
@ -10,6 +10,10 @@ monitor_protocol_event_queue(uint32_t event, void *qdict, uint64_t rate) "event=
|
|||
monitor_suspend(void *ptr, int cnt) "mon %p: %d"
|
||||
|
||||
# qmp.c
|
||||
monitor_qmp_in_band_enqueue(void *req, void *mon, unsigned len) "%p mon %p len %u"
|
||||
monitor_qmp_in_band_dequeue(void *req, unsigned len) "%p len %u"
|
||||
monitor_qmp_cmd_in_band(const char *id) "%s"
|
||||
monitor_qmp_err_in_band(const char *desc) "%s"
|
||||
monitor_qmp_cmd_out_of_band(const char *id) "%s"
|
||||
monitor_qmp_respond(void *mon, const char *json) "mon %p resp: %s"
|
||||
handle_qmp_command(void *mon, const char *req) "mon %p req: %s"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue