aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorPavel Dovgalyuk <pavel.dovgalyuk@ispras.ru>2021-10-26 12:54:05 +0300
committerMichael S. Tsirkin <mst@redhat.com>2021-11-01 19:36:11 -0400
commitd99e8b5fcb138b19f751c027ed5599224f9b5036 (patch)
tree15b17dd2fc74e8eb61e03e020aabecf40c41c9a3 /hw
parent2914fc61d5d72c6010d2b1fe8b4048b561e44ef3 (diff)
downloadqemu-d99e8b5fcb138b19f751c027ed5599224f9b5036.zip
qemu-d99e8b5fcb138b19f751c027ed5599224f9b5036.tar.gz
qemu-d99e8b5fcb138b19f751c027ed5599224f9b5036.tar.bz2
hw/i386: fix vmmouse registration
According to the logic of vmmouse_update_handler function, vmmouse should be registered as an event handler when it's status is zero. vmmouse_read_id resets the status but does not register the handler. This patch adds vmmouse registration and activation when status is reset. Signed-off-by: Pavel Dovgalyuk <Pavel.Dovgalyuk@ispras.ru> Message-Id: <163524204515.1914131.16465061981774791228.stgit@pasha-ThinkPad-X280> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/i386/vmmouse.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/i386/vmmouse.c b/hw/i386/vmmouse.c
index df4798f..3d66368 100644
--- a/hw/i386/vmmouse.c
+++ b/hw/i386/vmmouse.c
@@ -158,6 +158,7 @@ static void vmmouse_read_id(VMMouseState *s)
s->queue[s->nb_queue++] = VMMOUSE_VERSION;
s->status = 0;
+ vmmouse_update_handler(s, s->absolute);
}
static void vmmouse_request_relative(VMMouseState *s)