From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:44249) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UPEmG-0005FN-Th for qemu-devel@nongnu.org; Mon, 08 Apr 2013 12:18:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UPEm7-00070u-GV for qemu-devel@nongnu.org; Mon, 08 Apr 2013 12:18:40 -0400 Received: from mx1.redhat.com ([209.132.183.28]:14791) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UPEm7-00070d-8I for qemu-devel@nongnu.org; Mon, 08 Apr 2013 12:18:31 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r38GITI1011107 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 8 Apr 2013 12:18:29 -0400 Date: Mon, 8 Apr 2013 18:18:21 +0200 From: Igor Mammedov Message-ID: <20130408181821.669f5f85@thinkpad.mammed.net> In-Reply-To: <20130408100259.5cf4f7f0@redhat.com> References: <20130408100259.5cf4f7f0@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] New cpu-max field in query-machines QMP command output List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Luiz Capitulino Cc: Michal Novotny , qemu-devel@nongnu.org, Eduardo Habkost On Mon, 8 Apr 2013 10:02:59 -0400 Luiz Capitulino wrote: > On Mon, 8 Apr 2013 12:00:35 +0200 > Michal Novotny wrote: > > > This alters the query-machines QMP command to output information > > about maximum number of CPUs for each machine type with default > > value 1 in case the number of max_cpus is not set. > > > > Signed-off-by: Michal Novotny > > --- > > qapi-schema.json | 2 +- > > vl.c | 1 + > > 2 files changed, 2 insertions(+), 1 deletion(-) > > > > diff --git a/qapi-schema.json b/qapi-schema.json > > index db542f6..39cae4b 100644 > > --- a/qapi-schema.json > > +++ b/qapi-schema.json > > @@ -2865,7 +2865,7 @@ > > ## > > { 'type': 'MachineInfo', > > 'data': { 'name': 'str', '*alias': 'str', > > - '*is-default': 'bool' } } > > + '*is-default': 'bool', 'cpu-max': 'int' } } > > Please, document the new field. > > Also, how is this affected by the CPU hotplug support? It shouldn't affect or be affected by CPU hotplug. > > > > > ## > > # @query-machines: > > diff --git a/vl.c b/vl.c > > index a8bba04..c05b3d3 100644 > > --- a/vl.c > > +++ b/vl.c > > @@ -1617,6 +1617,7 @@ MachineInfoList *qmp_query_machines(Error **errp) > > } > > > > info->name = g_strdup(m->name); > > + info->cpu_max = !m->max_cpus ? 1 : m->max_cpus; > > > > entry = g_malloc0(sizeof(*entry)); > > entry->value = info; > > -- Regards, Igor