qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Andrew Jones <drjones@redhat.com>
To: Igor Mammedov <imammedo@redhat.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PULL 30/30] vl: smp_parse: cleanups
Date: Tue, 21 Jun 2016 18:22:13 +0200	[thread overview]
Message-ID: <20160621162213.nkwtpwch3fomnnhn@hawk.localdomain> (raw)
In-Reply-To: <20160621174013.79a54c74@igors-macbook-pro.local>

On Tue, Jun 21, 2016 at 05:40:13PM +0200, Igor Mammedov wrote:
> On Thu, 16 Jun 2016 16:16:25 +0200
> Paolo Bonzini <pbonzini@redhat.com> wrote:
> 
> > From: Andrew Jones <drjones@redhat.com>
> > 
> > No functional changes; only some code movement and removal of
> > dead code (impossible conditions). Also, max_cpus can be
> > initialized to 1, like smp_cpus, because it's either set by the
> > user or set to smp_cpus, when smp_cpus is set by the user, or
> > set to 1, when nothing is set.
> > 
> > Signed-off-by: Andrew Jones <drjones@redhat.com>
> > Message-Id: <1465580427-13596-2-git-send-email-drjones@redhat.com>
> > Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> this patch broke master with following CLI
>   -machine q35,accel=tcg -smp 2,cores=3,sockets=2,maxcpus=6

I see why. The "real" problem is the whole using 'cpus' instead of
'maxcpus' again, but, since that ship sailed, I guess I should be
careful with calculations like

 threads = cpus / (cores * sockets)

which can result in zero.

I'll send a patch right now.

Thanks,
drew

> 
> 
> 
> > ---
> >  vl.c | 34 +++++++++++++++-------------------
> >  1 file changed, 15 insertions(+), 19 deletions(-)
> > 
> > diff --git a/vl.c b/vl.c
> > index 99c3030..e69ebfd 100644
> > --- a/vl.c
> > +++ b/vl.c
> > @@ -154,7 +154,7 @@ CharDriverState *sclp_hds[MAX_SCLP_CONSOLES];
> >  int win2k_install_hack = 0;
> >  int singlestep = 0;
> >  int smp_cpus = 1;
> > -int max_cpus = 0;
> > +int max_cpus = 1;
> >  int smp_cores = 1;
> >  int smp_threads = 1;
> >  int acpi_enabled = 1;
> > @@ -1223,7 +1223,6 @@ static QemuOptsList qemu_smp_opts = {
> >  static void smp_parse(QemuOpts *opts)
> >  {
> >      if (opts) {
> > -
> >          unsigned cpus    = qemu_opt_get_number(opts, "cpus", 0);
> >          unsigned sockets = qemu_opt_get_number(opts, "sockets", 0);
> >          unsigned cores   = qemu_opt_get_number(opts, "cores", 0);
> > @@ -1251,6 +1250,17 @@ static void smp_parse(QemuOpts *opts)
> >          }
> >  
> >          max_cpus = qemu_opt_get_number(opts, "maxcpus", cpus);
> > +
> > +        if (max_cpus > MAX_CPUMASK_BITS) {
> > +            error_report("unsupported number of maxcpus");
> > +            exit(1);
> > +        }
> > +
> > +        if (max_cpus < cpus) {
> > +            error_report("maxcpus must be equal to or greater than
> > smp");
> > +            exit(1);
> > +        }
> > +
> >          if (sockets * cores * threads > max_cpus) {
> >              error_report("cpu topology: "
> >                           "sockets (%u) * cores (%u) * threads (%u) >
> > " @@ -1260,25 +1270,11 @@ static void smp_parse(QemuOpts *opts)
> >          }
> >  
> >          smp_cpus = cpus;
> > -        smp_cores = cores > 0 ? cores : 1;
> > -        smp_threads = threads > 0 ? threads : 1;
> > -
> > -    }
> > -
> > -    if (max_cpus == 0) {
> > -        max_cpus = smp_cpus;
> > -    }
> > -
> > -    if (max_cpus > MAX_CPUMASK_BITS) {
> > -        error_report("unsupported number of maxcpus");
> > -        exit(1);
> > -    }
> > -    if (max_cpus < smp_cpus) {
> > -        error_report("maxcpus must be equal to or greater than smp");
> > -        exit(1);
> > +        smp_cores = cores;
> > +        smp_threads = threads;
> >      }
> >  
> > -    if (smp_cpus > 1 || smp_cores > 1 || smp_threads > 1) {
> > +    if (smp_cpus > 1) {
> >          Error *blocker = NULL;
> >          error_setg(&blocker, QERR_REPLAY_NOT_SUPPORTED, "smp");
> >          replay_add_blocker(blocker);
> 
> 

  reply	other threads:[~2016-06-21 16:22 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-16 14:15 [Qemu-devel] [PULL 00/30] KVM, build, NBD, SCSI patches for 2016-06-16 Paolo Bonzini
2016-06-16 14:15 ` [Qemu-devel] [PULL 01/30] configure: Remove unused CONFIG_ZERO_MALLOC setting Paolo Bonzini
2016-06-16 14:15 ` [Qemu-devel] [PULL 02/30] os-posix: include sys/mman.h Paolo Bonzini
2016-06-16 14:15 ` [Qemu-devel] [PULL 03/30] clean-includes: run it once more Paolo Bonzini
2016-06-16 14:15 ` [Qemu-devel] [PULL 04/30] configure: Enable -Werror for MinGW builds, too Paolo Bonzini
2016-06-16 14:16 ` [Qemu-devel] [PULL 05/30] Makefile: Fix tag file generation targets Paolo Bonzini
2016-06-16 14:16 ` [Qemu-devel] [PULL 06/30] Make avx2 configure test work with -O2 Paolo Bonzini
2016-06-16 14:16 ` [Qemu-devel] [PULL 07/30] avx2 configure: Use primitives in test Paolo Bonzini
2016-06-16 14:16 ` [Qemu-devel] [PULL 08/30] configure: Remove unused CONFIG_SIGEV_THREAD_ID switch Paolo Bonzini
2016-06-16 14:16 ` [Qemu-devel] [PULL 09/30] nbd: Don't use *_to_cpup() functions Paolo Bonzini
2016-06-16 14:16 ` [Qemu-devel] [PULL 10/30] nbd: Don't use cpu_to_*w() functions Paolo Bonzini
2016-06-16 14:16 ` [Qemu-devel] [PULL 11/30] nbd: simplify the nbd_request and nbd_reply structs Paolo Bonzini
2016-06-16 14:16 ` [Qemu-devel] [PULL 12/30] target-i386: kvm: cache KVM_GET_SUPPORTED_CPUID data Paolo Bonzini
2016-06-16 14:16 ` [Qemu-devel] [PULL 13/30] scsi-disk: Use (unsigned long) typecasts when using "%lu" format string Paolo Bonzini
2016-06-16 14:16 ` [Qemu-devel] [PULL 14/30] linux-headers: update to Linux 4.6 Paolo Bonzini
2016-06-16 16:09   ` Christian Borntraeger
2016-06-16 16:31     ` Greg Kurz
2016-06-16 14:16 ` [Qemu-devel] [PULL 15/30] KVM: use KVM_CAP_MAX_VCPU_ID Paolo Bonzini
2016-06-16 14:16 ` [Qemu-devel] [PULL 16/30] vl.c: Add '-L help' which lists data dirs Paolo Bonzini
2016-06-16 14:16 ` [Qemu-devel] [PULL 17/30] nbd: Use BDRV_REQ_FUA for better FUA where supported Paolo Bonzini
2016-06-16 14:16 ` [Qemu-devel] [PULL 18/30] nbd: More debug typo fixes, use correct formats Paolo Bonzini
2016-06-16 14:16 ` [Qemu-devel] [PULL 19/30] nbd: Quit server after any write error Paolo Bonzini
2016-06-16 14:16 ` [Qemu-devel] [PULL 20/30] nbd: Improve server handling of bogus commands Paolo Bonzini
2016-06-16 14:16 ` [Qemu-devel] [PULL 21/30] nbd: Reject unknown request flags Paolo Bonzini
2016-06-16 14:16 ` [Qemu-devel] [PULL 22/30] nbd: Group all Linux-specific ioctl code in one place Paolo Bonzini
2016-06-16 14:16 ` [Qemu-devel] [PULL 23/30] nbd: Clean up ioctl handling of qemu-nbd -c Paolo Bonzini
2016-06-16 14:16 ` [Qemu-devel] [PULL 24/30] nbd: Detect servers that send unexpected error values Paolo Bonzini
2016-06-16 14:16 ` [Qemu-devel] [PULL 25/30] nbd: Avoid magic number for NBD max name size Paolo Bonzini
2016-06-16 14:16 ` [Qemu-devel] [PULL 26/30] scsi: esp: check buffer length before reading scsi command Paolo Bonzini
2016-06-16 14:16 ` [Qemu-devel] [PULL 27/30] scsi: esp: respect FIFO invariant after message phase Paolo Bonzini
2016-06-16 14:16 ` [Qemu-devel] [PULL 28/30] scsi: esp: clean up handle_ti/esp_do_dma if s->do_cmd Paolo Bonzini
2016-06-16 14:16 ` [Qemu-devel] [PULL 29/30] scsi: esp: make cmdbuf big enough for maximum CDB size Paolo Bonzini
2016-06-16 14:16 ` [Qemu-devel] [PULL 30/30] vl: smp_parse: cleanups Paolo Bonzini
2016-06-21 15:40   ` Igor Mammedov
2016-06-21 16:22     ` Andrew Jones [this message]
2016-06-16 16:02 ` [Qemu-devel] [PULL 00/30] KVM, build, NBD, SCSI patches for 2016-06-16 Peter Maydell
2016-06-16 16:29   ` Paolo Bonzini
2016-06-16 16:55     ` Peter Maydell
2016-06-16 17:01       ` Paolo Bonzini
2016-06-16 17:08         ` Peter Maydell

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=20160621162213.nkwtpwch3fomnnhn@hawk.localdomain \
    --to=drjones@redhat.com \
    --cc=imammedo@redhat.com \
    --cc=pbonzini@redhat.com \
    --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 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).