qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] hw/ppc/spapr: Test whether TCG is enabled with tcg_enabled()
@ 2023-06-20  7:48 Philippe Mathieu-Daudé
  2023-06-20  7:55 ` Claudio Fontana
                   ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Philippe Mathieu-Daudé @ 2023-06-20  7:48 UTC (permalink / raw)
  To: qemu-devel
  Cc: Harsh Prateek Bora, Cédric Le Goater,
	Daniel Henrique Barboza, David Gibson, Greg Kurz, qemu-ppc,
	Philippe Mathieu-Daudé

Although the PPC target only supports the TCG and KVM
accelerators, QEMU supports more. We can no assume that
'!kvm == tcg', so test for the correct accelerator. This
also eases code review, because here we don't care about
KVM, we really want to test for TCG.

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
 hw/ppc/spapr.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
index dcb7f1c70a..c4b666587b 100644
--- a/hw/ppc/spapr.c
+++ b/hw/ppc/spapr.c
@@ -2524,7 +2524,7 @@ static void spapr_set_vsmt_mode(SpaprMachineState *spapr, Error **errp)
     int ret;
     unsigned int smp_threads = ms->smp.threads;
 
-    if (!kvm_enabled() && (smp_threads > 1)) {
+    if (tcg_enabled() && (smp_threads > 1)) {
         error_setg(errp, "TCG cannot support more than 1 thread/core "
                    "on a pseries machine");
         return;
-- 
2.38.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2023-06-20 15:26 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-20  7:48 [PATCH] hw/ppc/spapr: Test whether TCG is enabled with tcg_enabled() Philippe Mathieu-Daudé
2023-06-20  7:55 ` Claudio Fontana
2023-06-20 14:48   ` Greg Kurz
2023-06-20 15:26     ` Philippe Mathieu-Daudé
2023-06-20  7:59 ` Harsh Prateek Bora
2023-06-20  8:06 ` Cédric Le Goater
2023-06-20  8:33 ` David Gibson
2023-06-20 11:09 ` BALATON Zoltan

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).