From nobody Sat Feb 7 08:45:09 2026 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1508171252816287.744479685295; Mon, 16 Oct 2017 09:27:32 -0700 (PDT) Received: from localhost ([::1]:33995 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e48Ea-0007i3-SM for importer@patchew.org; Mon, 16 Oct 2017 12:27:20 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34068) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e48B0-0004jx-UK for qemu-devel@nongnu.org; Mon, 16 Oct 2017 12:23:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e48Az-0007Hj-Tx for qemu-devel@nongnu.org; Mon, 16 Oct 2017 12:23:38 -0400 Received: from mx1.redhat.com ([209.132.183.28]:49054) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1e48Az-0007HA-K9 for qemu-devel@nongnu.org; Mon, 16 Oct 2017 12:23:37 -0400 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id AC31F13A40; Mon, 16 Oct 2017 16:23:36 +0000 (UTC) Received: from dell-r430-03.lab.eng.brq.redhat.com (dell-r430-03.lab.eng.brq.redhat.com [10.34.112.60]) by smtp.corp.redhat.com (Postfix) with ESMTP id 0CD8C600CE; Mon, 16 Oct 2017 16:23:30 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com AC31F13A40 Authentication-Results: ext-mx05.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx05.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=imammedo@redhat.com From: Igor Mammedov To: qemu-devel@nongnu.org Date: Mon, 16 Oct 2017 18:22:55 +0200 Message-Id: <1508170976-96869-6-git-send-email-imammedo@redhat.com> In-Reply-To: <1508170976-96869-1-git-send-email-imammedo@redhat.com> References: <1508170976-96869-1-git-send-email-imammedo@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.29]); Mon, 16 Oct 2017 16:23:36 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [RFC 5/6] HMP: add set-numa-node command X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: peter.maydell@linaro.org, pkrempa@redhat.com, ehabkost@redhat.com, cohuck@redhat.com, armbru@redhat.com, pbonzini@redhat.com, david@gibson.dropbear.id.au Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Signed-off-by: Igor Mammedov --- hmp.h | 1 + hmp-commands.hx | 13 +++++++++++++ hmp.c | 23 +++++++++++++++++++++++ numa.c | 19 +++++++++++++++++++ 4 files changed, 56 insertions(+) diff --git a/hmp.h b/hmp.h index 3605003..6e87f46 100644 --- a/hmp.h +++ b/hmp.h @@ -146,5 +146,6 @@ void hmp_info_ramblock(Monitor *mon, const QDict *qdict= ); void hmp_hotpluggable_cpus(Monitor *mon, const QDict *qdict); void hmp_info_vm_generation_id(Monitor *mon, const QDict *qdict); void hmp_info_memory_size_summary(Monitor *mon, const QDict *qdict); +void hmp_set_numa_node(Monitor *mon, const QDict *qdict); =20 #endif diff --git a/hmp-commands.hx b/hmp-commands.hx index 1941e19..1f95b3f 100644 --- a/hmp-commands.hx +++ b/hmp-commands.hx @@ -1837,6 +1837,19 @@ Print QOM properties of object at location @var{path} ETEXI =20 { + .name =3D "set-numa-node", + .args_type =3D "numa:O", + .params =3D "see -numa CLI option for possible options", + .help =3D "assign CPU to numa node", + .cmd =3D hmp_set_numa_node, + }, + +STEXI +@item qom-set @var{path} @var{property} @var{value} +Set QOM property @var{property} of object at location @var{path} to value = @var{value} +ETEXI + + { .name =3D "qom-set", .args_type =3D "path:s,property:s,value:s", .params =3D "path property value", diff --git a/hmp.c b/hmp.c index 739d330..69bae5b 100644 --- a/hmp.c +++ b/hmp.c @@ -43,6 +43,7 @@ #include "hw/intc/intc.h" #include "migration/snapshot.h" #include "migration/misc.h" +#include "sysemu/numa.h" =20 #ifdef CONFIG_SPICE #include @@ -2896,3 +2897,25 @@ void hmp_info_memory_size_summary(Monitor *mon, cons= t QDict *qdict) } hmp_handle_error(mon, &err); } + +void hmp_set_numa_node(Monitor *mon, const QDict *qdict) +{ + QemuOpts *opts; + Error *err =3D NULL; + MachineState *ms =3D MACHINE(qdev_get_machine()); + + opts =3D qemu_opts_from_qdict(qemu_find_opts("numa"), qdict, &err); + if (err) { + goto end; + } + + parse_numa(ms, opts, &err); + if (err) { + goto end; + } + +end: + if (err) { + hmp_handle_error(mon, &err); + } +} diff --git a/numa.c b/numa.c index d8e7dc0..a530d9c 100644 --- a/numa.c +++ b/numa.c @@ -47,6 +47,12 @@ QemuOptsList qemu_numa_opts =3D { .desc =3D { { 0 } } /* validated with OptsVisitor */ }; =20 +static enum { + NUMA_DISABLED, /* no numa was configured */ + NUMA_ENABLED, /* numa configuration is in process */ + NUMA_COMPLETE, /* configuration is complete and can't be altered */ +} numa_is_configured; + static int have_memdevs =3D -1; static int max_numa_nodeid; /* Highest specified NUMA node ID, plus one. * For all nodes, nodeid < max_numa_nodeid @@ -259,6 +265,18 @@ void parse_NumaOptions(MachineState *ms, NumaOptions *= object, Error **errp) { Error *err =3D NULL; =20 + if (numa_is_configured =3D=3D NUMA_COMPLETE) { + error_setg(&err, "NUMA configuration is finalized and can't be cha= nged," + " use CLI option or set-numa-node HMP/QMP command at" + " preconfig stage"); + goto end; + } else if (runstate_check(RUN_STATE_PRELAUNCH)) { + numa_is_configured =3D NUMA_ENABLED; + } else { + error_setg(&err, "NUMA is not enabled at start/preconfig stage"); + goto end; + } + switch (object->type) { case NUMA_OPTIONS_TYPE_NODE: parse_numa_node(ms, &object->u.node, &err); @@ -512,6 +530,7 @@ void numa_complete_configuration(MachineState *ms) } else { numa_set_mem_node_id(0, ram_size, 0); } + numa_is_configured =3D NUMA_COMPLETE; } =20 void parse_numa_opts(MachineState *ms) --=20 2.7.4