On 1/8/23 11:39, [email protected] wrote:
From: Marc-André Lureau <[email protected]>
Signed-off-by: Marc-André Lureau <[email protected]>
---
hw/i386/vmmouse.c | 29 ++++++++++++++---------------
hw/i386/trace-events | 10 ++++++++++
2 files changed, 24 insertions(+), 15 deletions(-)
static uint32_t vmmouse_get_status(VMMouseState *s)
{
- DPRINTF("vmmouse_get_status()\n");
+ trace_vmmouse_get_status();
Isn't it useful to log the status here? Anyhow:
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>
+
return (s->status << 16) | s->nb_queue;
}