From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58038) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XoU9R-0000yH-EK for qemu-devel@nongnu.org; Wed, 12 Nov 2014 04:23:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XoU9J-00027k-Gw for qemu-devel@nongnu.org; Wed, 12 Nov 2014 04:23:45 -0500 Received: from mx1.redhat.com ([209.132.183.28]:46597) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XoU9J-00027g-A3 for qemu-devel@nongnu.org; Wed, 12 Nov 2014 04:23:37 -0500 Date: Wed, 12 Nov 2014 10:23:28 +0100 From: Andrew Jones Message-ID: <20141112092327.GB3223@hawk.usersys.redhat.com> References: <1415731856-14121-1-git-send-email-ehabkost@redhat.com> <1415731856-14121-2-git-send-email-ehabkost@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1415731856-14121-2-git-send-email-ehabkost@redhat.com> Subject: Re: [Qemu-devel] [PATCH v2 1/3] vl: Avoid unnecessary 'if' nesting List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Eduardo Habkost Cc: Paolo Bonzini , Peter Lieven , qemu-devel@nongnu.org On Tue, Nov 11, 2014 at 04:50:54PM -0200, Eduardo Habkost wrote: > Just a coding style change, to make other changes easier to review. > > Signed-off-by: Eduardo Habkost > --- > vl.c | 10 ++++------ > 1 file changed, 4 insertions(+), 6 deletions(-) > > diff --git a/vl.c b/vl.c > index f4a6e5e..c1bfc9b 100644 > --- a/vl.c > +++ b/vl.c > @@ -1284,13 +1284,11 @@ static void smp_parse(QemuOpts *opts) > if (cpus == 0) { > cpus = cores * threads * sockets; > } > + } else if (cores == 0) { > + threads = threads > 0 ? threads : 1; > + cores = cpus / (sockets * threads); > } else { > - if (cores == 0) { > - threads = threads > 0 ? threads : 1; > - cores = cpus / (sockets * threads); > - } else { > - threads = cpus / (cores * sockets); > - } > + threads = cpus / (cores * sockets); > } > > max_cpus = qemu_opt_get_number(opts, "maxcpus", 0); > -- > 1.9.3 > Reviewed-by: Andrew Jones