Il 20/01/2014 17:41, Eduardo Habkost ha scritto: > - eax = kvm_arch_get_supported_cpuid(s, 0xC0000000, 0, R_EAX); > - if (eax >= 0xC0000001) { > - /* Support VIA max extended level */ > - x86_cpu_def->xlevel2 = eax; > - x86_cpu_def->features[FEAT_C000_0001_EDX] = > - kvm_arch_get_supported_cpuid(s, 0xC0000001, 0, R_EDX); > - } > + x86_cpu_def->xlevel2 = > + kvm_arch_get_supported_cpuid(s, 0xC0000000, 0, R_EAX); > + /* Support VIA max extended level */ > + x86_cpu_def->features[FEAT_C000_0001_EDX] = > + kvm_arch_get_supported_cpuid(s, 0xC0000001, 0, R_EDX); >
I'm removing this comment before applying the patch (I believe the comment was not really grammatical, and it meant something like "VIA max extended level supported"). Paolo