From: Igor Mammedov <imammedo@redhat.com>
To: qemu-devel@nongnu.org
Cc: eblake@redhat.com, armbru@redhat.com, ehabkost@redhat.com,
pkrempa@redhat.com, david@gibson.dropbear.id.au,
peter.maydell@linaro.org, pbonzini@redhat.com
Subject: [Qemu-devel] [RFC v2 2/4] HMP: add set-numa-node command
Date: Thu, 28 Dec 2017 18:22:57 +0100 [thread overview]
Message-ID: <1514481779-184817-3-git-send-email-imammedo@redhat.com> (raw)
In-Reply-To: <1514481779-184817-1-git-send-email-imammedo@redhat.com>
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
---
hmp.h | 1 +
hmp-commands.hx | 13 +++++++++++++
hmp.c | 23 +++++++++++++++++++++++
3 files changed, 37 insertions(+)
diff --git a/hmp.h b/hmp.h
index a6f56b1..d861038 100644
--- a/hmp.h
+++ b/hmp.h
@@ -147,5 +147,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);
#endif
diff --git a/hmp-commands.hx b/hmp-commands.hx
index 6d5ebdf..17f8504 100644
--- a/hmp-commands.hx
+++ b/hmp-commands.hx
@@ -1816,6 +1816,19 @@ Print QOM properties of object at location @var{path}
ETEXI
{
+ .name = "set-numa-node",
+ .args_type = "numa:O",
+ .params = "see -numa CLI option for possible options",
+ .help = "assign CPU to numa node",
+ .cmd = 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 = "qom-set",
.args_type = "path:s,property:s,value:s",
.params = "path property value",
diff --git a/hmp.c b/hmp.c
index 35a7041..c8ed910 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"
#ifdef CONFIG_SPICE
#include <spice/enums.h>
@@ -2918,3 +2919,25 @@ void hmp_info_memory_size_summary(Monitor *mon, const QDict *qdict)
}
hmp_handle_error(mon, &err);
}
+
+void hmp_set_numa_node(Monitor *mon, const QDict *qdict)
+{
+ QemuOpts *opts;
+ Error *err = NULL;
+ MachineState *ms = MACHINE(qdev_get_machine());
+
+ opts = 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);
+ }
+}
--
2.7.4
next prev parent reply other threads:[~2017-12-28 17:23 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-28 17:22 [Qemu-devel] [RFC v2 0/4] enable numa configuration before machine is running from HMP/QMP Igor Mammedov
2017-12-28 17:22 ` [Qemu-devel] [RFC v2 1/4] numa: split out NumaOptions parsing into parse_NumaOptions() Igor Mammedov
2017-12-28 17:22 ` Igor Mammedov [this message]
2017-12-28 17:22 ` [Qemu-devel] [RFC v2 3/4] QMP: add set-numa-node command Igor Mammedov
2017-12-28 17:22 ` [Qemu-devel] [RFC v2 4/4] numa: pc: reset machine if numa config has changed in prelaunch time Igor Mammedov
2018-01-03 5:52 ` [Qemu-devel] [RFC v2 0/4] enable numa configuration before machine is running from HMP/QMP David Gibson
2018-01-03 14:17 ` Markus Armbruster
2018-01-08 8:35 ` Igor Mammedov
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=1514481779-184817-3-git-send-email-imammedo@redhat.com \
--to=imammedo@redhat.com \
--cc=armbru@redhat.com \
--cc=david@gibson.dropbear.id.au \
--cc=eblake@redhat.com \
--cc=ehabkost@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=pkrempa@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).