diff options
| author | Jason J. Herne | 2013-12-11 19:24:14 +0100 |
|---|---|---|
| committer | Luiz Capitulino | 2014-01-06 19:45:39 +0100 |
| commit | abf233294bc8a4d2c7d5f428f1408d7bdd0c02e0 (patch) | |
| tree | 76a4ecdf2bca399a6cc6b8827d86621d5815f074 | |
| parent | vl: add missing transition debug->finish_migrate (diff) | |
| download | qemu-abf233294bc8a4d2c7d5f428f1408d7bdd0c02e0.tar.gz qemu-abf233294bc8a4d2c7d5f428f1408d7bdd0c02e0.tar.xz qemu-abf233294bc8a4d2c7d5f428f1408d7bdd0c02e0.zip | |
qemu-monitor: HMP cpu-add wrapper
Add HMP cpu-add wrapper to allow cpu hot plugging via monitor.
Signed-off-by: Jason J. Herne <jjherne@us.ibm.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
| -rw-r--r-- | hmp-commands.hx | 13 | ||||
| -rw-r--r-- | hmp.c | 10 | ||||
| -rw-r--r-- | hmp.h | 1 |
3 files changed, 24 insertions, 0 deletions
diff --git a/hmp-commands.hx b/hmp-commands.hx index ebe8e78bb9..929550d66b 100644 --- a/hmp-commands.hx +++ b/hmp-commands.hx @@ -1620,6 +1620,19 @@ Executes a qemu-io command on the given block device. ETEXI { + .name = "cpu-add", + .args_type = "id:i", + .params = "id", + .help = "add cpu", + .mhandler.cmd = hmp_cpu_add, + }, + +STEXI +@item cpu-add @var{id} +Add CPU with id @var{id} +ETEXI + + { .name = "info", .args_type = "item:s?", .params = "[subcommand]", @@ -1525,6 +1525,16 @@ void hmp_nbd_server_stop(Monitor *mon, const QDict *qdict) hmp_handle_error(mon, &errp); } +void hmp_cpu_add(Monitor *mon, const QDict *qdict) +{ + int cpuid; + Error *err = NULL; + + cpuid = qdict_get_int(qdict, "id"); + qmp_cpu_add(cpuid, &err); + hmp_handle_error(mon, &err); +} + void hmp_chardev_add(Monitor *mon, const QDict *qdict) { const char *args = qdict_get_str(qdict, "args"); @@ -89,5 +89,6 @@ void hmp_nbd_server_stop(Monitor *mon, const QDict *qdict); void hmp_chardev_add(Monitor *mon, const QDict *qdict); void hmp_chardev_remove(Monitor *mon, const QDict *qdict); void hmp_qemu_io(Monitor *mon, const QDict *qdict); +void hmp_cpu_add(Monitor *mon, const QDict *qdict); #endif |
