kvm: dirty-ring: Fix race with vcpu creation
[qemu/ar7.git] / softmmu / runstate-hmp-cmds.c
blobd55a7d4db897bf5919d69fb98e5628db05e3c2c4
1 /*
2 * HMP commands related to run state
4 * Copyright IBM, Corp. 2011
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
12 * Contributions after 2012-01-13 are licensed under the terms of the
13 * GNU GPL, version 2 or (at your option) any later version.
16 #include "qemu/osdep.h"
17 #include "exec/cpu-common.h"
18 #include "monitor/hmp.h"
19 #include "monitor/monitor.h"
20 #include "qapi/error.h"
21 #include "qapi/qapi-commands-run-state.h"
22 #include "qapi/qmp/qdict.h"
24 void hmp_info_status(Monitor *mon, const QDict *qdict)
26 StatusInfo *info;
28 info = qmp_query_status(NULL);
30 monitor_printf(mon, "VM status: %s%s",
31 info->running ? "running" : "paused",
32 info->singlestep ? " (single step mode)" : "");
34 if (!info->running && info->status != RUN_STATE_PAUSED) {
35 monitor_printf(mon, " (%s)", RunState_str(info->status));
38 monitor_printf(mon, "\n");
40 qapi_free_StatusInfo(info);
43 void hmp_singlestep(Monitor *mon, const QDict *qdict)
45 const char *option = qdict_get_try_str(qdict, "option");
46 if (!option || !strcmp(option, "on")) {
47 singlestep = 1;
48 } else if (!strcmp(option, "off")) {
49 singlestep = 0;
50 } else {
51 monitor_printf(mon, "unexpected option %s\n", option);
55 void hmp_watchdog_action(Monitor *mon, const QDict *qdict)
57 Error *err = NULL;
58 WatchdogAction action;
59 char *qapi_value;
61 qapi_value = g_ascii_strdown(qdict_get_str(qdict, "action"), -1);
62 action = qapi_enum_parse(&WatchdogAction_lookup, qapi_value, -1, &err);
63 g_free(qapi_value);
64 if (err) {
65 hmp_handle_error(mon, err);
66 return;
68 qmp_watchdog_set_action(action, &error_abort);
71 void watchdog_action_completion(ReadLineState *rs, int nb_args, const char *str)
73 int i;
75 if (nb_args != 2) {
76 return;
78 readline_set_completion_index(rs, strlen(str));
79 for (i = 0; i < WATCHDOG_ACTION__MAX; i++) {
80 readline_add_completion_of(rs, str, WatchdogAction_str(i));