[PATCH] QEMU: Fix KVM XSAVE feature bit enumeration

2011-06-10 Thread Andre Przywara
When iterating through the XSAVE feature enumeration CPUID leaf (0xD) we should not stop at the first zero EAX, but instead keep scanning since there are gaps in the enumeration (ECX=1 for instance). This fixes the proper usage of AVX in KVM guests. Signed-off-by: Andre Przywara

Re: [PATCH] QEMU: Fix KVM XSAVE feature bit enumeration

2011-06-10 Thread Jan Kiszka
On 2011-06-10 14:08, Andre Przywara wrote: When iterating through the XSAVE feature enumeration CPUID leaf (0xD) we should not stop at the first zero EAX, but instead keep scanning since there are gaps in the enumeration (ECX=1 for instance). This fixes the proper usage of AVX in KVM guests.