qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] vmmouse with Fedora-6 64bit guest


From: Anthony Liguori
Subject: Re: [Qemu-devel] vmmouse with Fedora-6 64bit guest
Date: Mon, 08 Oct 2007 09:55:37 -0500
User-agent: Thunderbird 2.0.0.6 (X11/20071005)

Dan Kenigsberg wrote:
In X's vmmouse_drv, the magic number is defined as uint32_t. Therefore
the top half of the 64 bit ax register is garbage that should be
ignored. This makes fc6 guest's vmmouse work.


I think a better fix would be to change eax from target_ulong to uint32_t.

Regards,

Anthony Liguori

Index: hw/vmport.c
===================================================================
RCS file: /sources/qemu/qemu/hw/vmport.c,v
retrieving revision 1.1
diff -u -p -r1.1 vmport.c
--- hw/vmport.c 26 Aug 2007 17:48:12 -0000      1.1
+++ hw/vmport.c 8 Oct 2007 13:11:45 -0000
@@ -55,7 +55,7 @@ static uint32_t vmport_ioport_read(void target_ulong eax; eax = s->env->regs[R_EAX];
-    if (eax != VMPORT_MAGIC)
+    if ((uint32_t)eax != VMPORT_MAGIC)
         return eax;
command = s->env->regs[R_ECX];






reply via email to

[Prev in Thread] Current Thread [Next in Thread]