From: Andrew Jones <drjones@redhat.com>
To: Eduardo Habkost <ehabkost@redhat.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>, Peter Lieven <pl@kamp.de>,
qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v2 3/3] vl: Don't silently change topology when all -smp options were set
Date: Wed, 12 Nov 2014 10:38:34 +0100 [thread overview]
Message-ID: <20141112093834.GC3223@hawk.usersys.redhat.com> (raw)
In-Reply-To: <1415731856-14121-4-git-send-email-ehabkost@redhat.com>
On Tue, Nov 11, 2014 at 04:50:56PM -0200, Eduardo Habkost wrote:
> QEMU tries to change the "threads" option even if it was explicitly set
> in the command-line, and it shouldn't do that.
>
> The right thing to do when all options (cpus, sockets, cores, threds)
> are explicitly set is to sanity check them and abort in case they don't
> make sense (i.e. when sockets*cores*threads < cpus).
>
> 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 2ed8b07..8880a4e 100644
> --- a/vl.c
> +++ b/vl.c
> @@ -1287,8 +1287,14 @@ static void smp_parse(QemuOpts *opts)
> } else if (cores == 0) {
> threads = threads > 0 ? threads : 1;
> cores = cpus / (sockets * threads);
> - } else {
> + } else if (threads == 0) {
> threads = cpus / (cores * sockets);
> + } else if (sockets * cores * threads < cpus) {
> + fprintf(stderr, "cpu topology: error: "
> + "sockets (%u) * cores (%u) * threads (%u) < "
> + "smp_cpus (%u)\n",
> + sockets, cores, threads, cpus);
> + exit(1);
> }
>
> max_cpus = qemu_opt_get_number(opts, "maxcpus", 0);
> --
> 1.9.3
>
Reviewed-by: Andrew Jones <drjones@redhat.com>
prev parent reply other threads:[~2014-11-12 9:39 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-11 18:50 [Qemu-devel] [PATCH v2 0/3] vl: smp_parse sanity checks Eduardo Habkost
2014-11-11 18:50 ` [Qemu-devel] [PATCH v2 1/3] vl: Avoid unnecessary 'if' nesting Eduardo Habkost
2014-11-12 9:23 ` Andrew Jones
2014-11-11 18:50 ` [Qemu-devel] [PATCH v2 2/3] vl: fix max_cpus check Eduardo Habkost
2014-11-11 18:50 ` [Qemu-devel] [PATCH v2 3/3] vl: Don't silently change topology when all -smp options were set Eduardo Habkost
2014-11-12 9:38 ` Andrew Jones [this message]
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=20141112093834.GC3223@hawk.usersys.redhat.com \
--to=drjones@redhat.com \
--cc=ehabkost@redhat.com \
--cc=pbonzini@redhat.com \
--cc=pl@kamp.de \
--cc=qemu-devel@nongnu.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.