qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH] Return amount of ASIDs


From: Alexander Graf
Subject: [Qemu-devel] [PATCH] Return amount of ASIDs
Date: Wed, 15 Oct 2008 20:17:23 +0200
User-agent: Thunderbird 2.0.0.14 (X11/20080421)

Return amount of ASIDs

With SVM the TLB supports tagging to distinguish TLB entries from different virtual CPUs. This tag is called an ASID. The amount of ASIDs is given in EBX of the SVM-CPUID-leaf. Currently we return 0, which might break hypervisors. Let's better return something >0 here, say 0x10. Since we're flushing the complete TLB on every VM entry and exit we're not making use of the ASID information anyways.

Signed-off-by: Alexander Graf <address@hidden>


Index: target-i386/op_helper.c
===================================================================
--- target-i386/op_helper.c     (revision 5494)
+++ target-i386/op_helper.c     (working copy)
@@ -2037,10 +2037,10 @@
         EDX = 0;
         break;
     case 0x8000000A:
-        EAX = 0x00000001;
-        EBX = 0;
+        EAX = 0x00000001; /* SVM Revision */
+        EBX = 0x00000010; /* nr of ASIDs */
         ECX = 0;
-        EDX = 0;
+        EDX = 0; /* optional features */
         break;
     default:
         /* reserved values: zero */

reply via email to

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