qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [5717] Fix CPUID ext2 features masking (Avi Kivity)
@ 2008-11-13 19:28 Anthony Liguori
  0 siblings, 0 replies; only message in thread
From: Anthony Liguori @ 2008-11-13 19:28 UTC (permalink / raw)
  To: qemu-devel

Revision: 5717
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5717
Author:   aliguori
Date:     2008-11-13 19:28:04 +0000 (Thu, 13 Nov 2008)

Log Message:
-----------
Fix CPUID ext2 features masking (Avi Kivity)

Typo. Exposes rdtscp which kills some guests.

Signed-off-by: Avi Kivity <avi@redhat.com> 
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>

Modified Paths:
--------------
    trunk/target-i386/helper.c

Modified: trunk/target-i386/helper.c
===================================================================
--- trunk/target-i386/helper.c	2008-11-13 19:23:17 UTC (rev 5716)
+++ trunk/target-i386/helper.c	2008-11-13 19:28:04 UTC (rev 5717)
@@ -1466,7 +1466,7 @@
             /* svm */
             *ecx &= ~4UL;
             /* 3dnow */
-            *edx = ~0xc0000000;
+            *edx &= ~0xc0000000;
         }
         break;
     case 0x80000002:

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-11-13 19:28 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-13 19:28 [Qemu-devel] [5717] Fix CPUID ext2 features masking (Avi Kivity) Anthony Liguori

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).