[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v6 10/11] qmp: add set-numa-node command
From: |
Igor Mammedov |
Subject: |
[Qemu-devel] [PATCH v6 10/11] qmp: add set-numa-node command |
Date: |
Fri, 27 Apr 2018 17:05:22 +0200 |
Command is allowed to run only in preconfig stage and
will allow to configure numa mapping for CPUs depending
on possible CPUs layout (query-hotpluggable-cpus) for
given machine instance.
Example of configuration session:
$QEMU -smp 2 --preconfig ...
QMP:
-> {'execute': 'query-hotpluggable-cpus' }
<- {'return': [
{'props': {'core-id': 0, 'thread-id': 0, 'socket-id': 1}, ... },
{'props': {'core-id': 0, 'thread-id': 0, 'socket-id': 0}, ... }
]}
-> {'execute': 'set-numa-node', 'arguments': { 'type': 'node', 'nodeid': 0 } }
<- {'return': {}}
-> {'execute': 'set-numa-node', 'arguments': { 'type': 'cpu',
'node-id': 0, 'core-id': 0, 'thread-id': 0, 'socket-id': 1, }
}
<- {'return': {}}
-> {'execute': 'set-numa-node', 'arguments': { 'type': 'node', 'nodeid': 1 } }
-> {'execute': 'set-numa-node', 'arguments': { 'type': 'cpu',
'node-id': 1, 'core-id': 0, 'thread-id': 0, 'socket-id': 0 }
}
<- {'return': {}}
-> {'execute': 'query-hotpluggable-cpus' }
<- {'return': [
{'props': {'core-id': 0, 'thread-id': 0, 'node-id': 0, 'socket-id': 1},
... },
{'props': {'core-id': 0, 'thread-id': 0, 'node-id': 1, 'socket-id': 0},
... }
]}
Signed-off-by: Igor Mammedov <address@hidden>
---
v6:
* limit command to preconfig state only
* add example QMP command sequence
---
numa.c | 11 +++++++++++
qapi/misc.json | 14 ++++++++++++++
2 files changed, 25 insertions(+)
diff --git a/numa.c b/numa.c
index 63e3989..8e96bcc 100644
--- a/numa.c
+++ b/numa.c
@@ -444,6 +444,17 @@ void parse_numa_opts(MachineState *ms)
}
}
+void qmp_set_numa_node(NumaOptions *cmd, Error **errp)
+{
+ if (!runstate_check(RUN_STATE_PRECONFIG)) {
+ error_setg(errp, "The command is permitted only in '%s' state",
+ RunState_str(RUN_STATE_PRECONFIG));
+ return;
+ }
+
+ set_numa_options(MACHINE(qdev_get_machine()), cmd, errp);
+}
+
void numa_cpu_pre_plug(const CPUArchId *slot, DeviceState *dev, Error **errp)
{
int node_id = object_property_get_int(OBJECT(dev), "node-id",
&error_abort);
diff --git a/qapi/misc.json b/qapi/misc.json
index 739396e..96adc27 100644
--- a/qapi/misc.json
+++ b/qapi/misc.json
@@ -3475,3 +3475,17 @@
##
{ 'command': 'x-oob-test', 'data' : { 'lock': 'bool' },
'allow-oob': true }
+
+##
+# @set-numa-node:
+#
+# Runtime equivalent of '-numa' CLI option, available at
+# preconfigure stage to configure numa mapping before initializing
+# machine.
+#
+# Since 2.13
+##
+{ 'command': 'set-numa-node', 'boxed': true,
+ 'data': 'NumaOptions',
+ 'allowed-in-preconfig': true
+}
--
2.7.4
- [Qemu-devel] [PATCH v6 05/11] qapi: introduce new cmd option "allowed-in-preconfig", (continued)
- [Qemu-devel] [PATCH v6 05/11] qapi: introduce new cmd option "allowed-in-preconfig", Igor Mammedov, 2018/04/27
- [Qemu-devel] [PATCH v6 07/11] tests: add allowed-in-preconfig-test for qapi-schema, Igor Mammedov, 2018/04/27
- [Qemu-devel] [PATCH v6 11/11] tests: functional tests for QMP command set-numa-node, Igor Mammedov, 2018/04/27
- [Qemu-devel] [PATCH v6 01/11] numa: postpone options post-processing till machine_run_board_init(), Igor Mammedov, 2018/04/27
- [Qemu-devel] [PATCH v6 08/11] tests: extend qmp test with preconfig checks, Igor Mammedov, 2018/04/27
- [Qemu-devel] [PATCH v6 04/11] hmp: disable monitor in preconfig state, Igor Mammedov, 2018/04/27
- [Qemu-devel] [PATCH v6 10/11] qmp: add set-numa-node command,
Igor Mammedov <=
- [Qemu-devel] [PATCH v6 09/11] qmp: permit query-hotpluggable-cpus in preconfig state, Igor Mammedov, 2018/04/27
- [Qemu-devel] [PATCH v6 02/11] numa: split out NumaOptions parsing into set_numa_options(), Igor Mammedov, 2018/04/27
- [Qemu-devel] [PATCH v6 03/11] cli: add --preconfig option, Igor Mammedov, 2018/04/27