qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Eduardo Habkost <ehabkost@redhat.com>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: qemu-devel@nongnu.org, "Paolo Bonzini" <pbonzini@redhat.com>,
	"Thomas Huth" <thuth@redhat.com>,
	"Andreas Färber" <afaerber@suse.de>,
	"Richard Henderson" <rth@twiddle.net>
Subject: [Qemu-devel] [PULL 2/7] vl: Add another sanity check to smp_parse() function
Date: Mon, 28 Sep 2015 14:31:34 -0300	[thread overview]
Message-ID: <1443461499-5843-3-git-send-email-ehabkost@redhat.com> (raw)
In-Reply-To: <1443461499-5843-1-git-send-email-ehabkost@redhat.com>

From: Thomas Huth <thuth@redhat.com>

The code in smp_parse already checks the topology information for
sockets * cores * threads < cpus and bails out with an error in
that case. However, it is still possible to supply a bad configuration
the other way round, e.g. with:

 qemu-system-xxx -smp 4,sockets=1,cores=4,threads=2

QEMU then still starts the guest, with topology configuration that
is rather incomprehensible and likely not what the user wanted.
So let's add another check to refuse such wrong configurations.

Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Acked-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Acked-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
---
 vl.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/vl.c b/vl.c
index e211f6a..cbc8f25 100644
--- a/vl.c
+++ b/vl.c
@@ -1222,7 +1222,13 @@ static void smp_parse(QemuOpts *opts)
             exit(1);
         }
 
-        max_cpus = qemu_opt_get_number(opts, "maxcpus", 0);
+        max_cpus = qemu_opt_get_number(opts, "maxcpus", cpus);
+        if (sockets * cores * threads > max_cpus) {
+            fprintf(stderr, "cpu topology: error: "
+                    "sockets (%u) * cores (%u) * threads (%u) > maxcpus (%u)\n",
+                    sockets, cores, threads, max_cpus);
+            exit(1);
+        }
 
         smp_cpus = cpus;
         smp_cores = cores > 0 ? cores : 1;
-- 
2.1.0

  parent reply	other threads:[~2015-09-28 17:31 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-28 17:31 [Qemu-devel] [PULL 0/7] X86 queue, 2015-09-28 Eduardo Habkost
2015-09-28 17:31 ` [Qemu-devel] [PULL 1/7] cpu: Introduce X86CPUTopoInfo structure for argument simplification Eduardo Habkost
2015-09-28 17:31 ` Eduardo Habkost [this message]
2015-09-28 17:31 ` [Qemu-devel] [PULL 3/7] target-i386: Enable "check" mode by default Eduardo Habkost
2015-09-28 17:31 ` [Qemu-devel] [PULL 4/7] target-i386: Convert kvm_default_*features to property/value pairs Eduardo Habkost
2015-09-28 17:31 ` [Qemu-devel] [PULL 5/7] target-i386: Move breakpoint related functions to new file Eduardo Habkost
2015-09-28 17:31 ` [Qemu-devel] [PULL 6/7] target-i386: Make check_hw_breakpoints static Eduardo Habkost
2015-09-28 17:31 ` [Qemu-devel] [PULL 7/7] target-i386: get/put MSR_TSC_AUX across reset and migration Eduardo Habkost
2015-09-29 11:28 ` [Qemu-devel] [PULL 0/7] X86 queue, 2015-09-28 Peter Maydell
2015-09-29 11:29   ` Peter Maydell
2015-09-29 18:22   ` Eduardo Habkost
2015-09-29 19:21     ` Peter Maydell
2015-09-29 19:42       ` Eduardo Habkost

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1443461499-5843-3-git-send-email-ehabkost@redhat.com \
    --to=ehabkost@redhat.com \
    --cc=afaerber@suse.de \
    --cc=pbonzini@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=rth@twiddle.net \
    --cc=thuth@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).