|
|
383d26 |
From 65165d3130b3f1d85cfb3078f96f9b0b29e8f42e Mon Sep 17 00:00:00 2001
|
|
|
383d26 |
From: Eduardo Habkost <ehabkost@redhat.com>
|
|
|
383d26 |
Date: Tue, 3 Jul 2018 17:23:56 +0200
|
|
|
383d26 |
Subject: [PATCH 11/89] i386: Remove generic SMT thread check
|
|
|
383d26 |
|
|
|
383d26 |
RH-Author: Eduardo Habkost <ehabkost@redhat.com>
|
|
|
383d26 |
Message-id: <20180703172356.21038-11-ehabkost@redhat.com>
|
|
|
383d26 |
Patchwork-id: 81220
|
|
|
383d26 |
O-Subject: [RHEL-7.6 qemu-kvm-rhev PATCH v3 10/10] i386: Remove generic SMT thread check
|
|
|
383d26 |
Bugzilla: 1481253
|
|
|
383d26 |
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
|
|
|
383d26 |
RH-Acked-by: Igor Mammedov <imammedo@redhat.com>
|
|
|
383d26 |
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
383d26 |
|
|
|
383d26 |
From: Babu Moger <babu.moger@amd.com>
|
|
|
383d26 |
|
|
|
383d26 |
Remove generic non-intel check while validating hyperthreading support.
|
|
|
383d26 |
Certain AMD CPUs can support hyperthreading now.
|
|
|
383d26 |
|
|
|
383d26 |
CPU family with TOPOEXT feature can support hyperthreading now.
|
|
|
383d26 |
|
|
|
383d26 |
Signed-off-by: Babu Moger <babu.moger@amd.com>
|
|
|
383d26 |
Tested-by: Geoffrey McRae <geoff@hostfission.com>
|
|
|
383d26 |
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
|
|
|
383d26 |
Message-Id: <1529443919-67509-4-git-send-email-babu.moger@amd.com>
|
|
|
383d26 |
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
|
|
|
383d26 |
(cherry picked from commit 6b2942f966d5e54c37d305c80f5f98d504c2bc55)
|
|
|
383d26 |
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
|
|
|
383d26 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
383d26 |
---
|
|
|
383d26 |
target/i386/cpu.c | 17 +++++++++++------
|
|
|
383d26 |
1 file changed, 11 insertions(+), 6 deletions(-)
|
|
|
383d26 |
|
|
|
383d26 |
diff --git a/target/i386/cpu.c b/target/i386/cpu.c
|
|
|
383d26 |
index 5d5d7e6..eabe4ea 100644
|
|
|
383d26 |
--- a/target/i386/cpu.c
|
|
|
383d26 |
+++ b/target/i386/cpu.c
|
|
|
383d26 |
@@ -4952,17 +4952,22 @@ static void x86_cpu_realizefn(DeviceState *dev, Error **errp)
|
|
|
383d26 |
|
|
|
383d26 |
qemu_init_vcpu(cs);
|
|
|
383d26 |
|
|
|
383d26 |
- /* Only Intel CPUs support hyperthreading. Even though QEMU fixes this
|
|
|
383d26 |
- * issue by adjusting CPUID_0000_0001_EBX and CPUID_8000_0008_ECX
|
|
|
383d26 |
- * based on inputs (sockets,cores,threads), it is still better to gives
|
|
|
383d26 |
+ /*
|
|
|
383d26 |
+ * Most Intel and certain AMD CPUs support hyperthreading. Even though QEMU
|
|
|
383d26 |
+ * fixes this issue by adjusting CPUID_0000_0001_EBX and CPUID_8000_0008_ECX
|
|
|
383d26 |
+ * based on inputs (sockets,cores,threads), it is still better to give
|
|
|
383d26 |
* users a warning.
|
|
|
383d26 |
*
|
|
|
383d26 |
* NOTE: the following code has to follow qemu_init_vcpu(). Otherwise
|
|
|
383d26 |
* cs->nr_threads hasn't be populated yet and the checking is incorrect.
|
|
|
383d26 |
*/
|
|
|
383d26 |
- if (!IS_INTEL_CPU(env) && cs->nr_threads > 1 && !ht_warned) {
|
|
|
383d26 |
- error_report("AMD CPU doesn't support hyperthreading. Please configure"
|
|
|
383d26 |
- " -smp options properly.");
|
|
|
383d26 |
+ if (IS_AMD_CPU(env) &&
|
|
|
383d26 |
+ !(env->features[FEAT_8000_0001_ECX] & CPUID_EXT3_TOPOEXT) &&
|
|
|
383d26 |
+ cs->nr_threads > 1 && !ht_warned) {
|
|
|
383d26 |
+ error_report("This family of AMD CPU doesn't support "
|
|
|
383d26 |
+ "hyperthreading(%d). Please configure -smp "
|
|
|
383d26 |
+ "options properly or try enabling topoext feature.",
|
|
|
383d26 |
+ cs->nr_threads);
|
|
|
383d26 |
ht_warned = true;
|
|
|
383d26 |
}
|
|
|
383d26 |
|
|
|
383d26 |
--
|
|
|
383d26 |
1.8.3.1
|
|
|
383d26 |
|