|
|
|
@ -731,37 +731,6 @@ help: |
|
|
|
help_cmd(mon, "info"); |
|
|
|
} |
|
|
|
|
|
|
|
static void do_info_version_print(Monitor *mon, const QObject *data) |
|
|
|
{ |
|
|
|
QDict *qdict; |
|
|
|
QDict *qemu; |
|
|
|
|
|
|
|
qdict = qobject_to_qdict(data); |
|
|
|
qemu = qdict_get_qdict(qdict, "qemu"); |
|
|
|
|
|
|
|
monitor_printf(mon, "%" PRId64 ".%" PRId64 ".%" PRId64 "%s\n", |
|
|
|
qdict_get_int(qemu, "major"), |
|
|
|
qdict_get_int(qemu, "minor"), |
|
|
|
qdict_get_int(qemu, "micro"), |
|
|
|
qdict_get_str(qdict, "package")); |
|
|
|
} |
|
|
|
|
|
|
|
static void do_info_version(Monitor *mon, QObject **ret_data) |
|
|
|
{ |
|
|
|
const char *version = QEMU_VERSION; |
|
|
|
int major = 0, minor = 0, micro = 0; |
|
|
|
char *tmp; |
|
|
|
|
|
|
|
major = strtol(version, &tmp, 10); |
|
|
|
tmp++; |
|
|
|
minor = strtol(tmp, &tmp, 10); |
|
|
|
tmp++; |
|
|
|
micro = strtol(tmp, &tmp, 10); |
|
|
|
|
|
|
|
*ret_data = qobject_from_jsonf("{ 'qemu': { 'major': %d, 'minor': %d, \
|
|
|
|
'micro': %d }, 'package': %s }", major, minor, micro, QEMU_PKGVERSION); |
|
|
|
} |
|
|
|
|
|
|
|
static QObject *get_cmd_dict(const char *name) |
|
|
|
{ |
|
|
|
const char *p; |
|
|
|
@ -2872,8 +2841,7 @@ static const mon_cmd_t info_cmds[] = { |
|
|
|
.args_type = "", |
|
|
|
.params = "", |
|
|
|
.help = "show the version of QEMU", |
|
|
|
.user_print = do_info_version_print, |
|
|
|
.mhandler.info_new = do_info_version, |
|
|
|
.mhandler.info = hmp_info_version, |
|
|
|
}, |
|
|
|
{ |
|
|
|
.name = "network", |
|
|
|
@ -3171,14 +3139,6 @@ static const mon_cmd_t qmp_cmds[] = { |
|
|
|
}; |
|
|
|
|
|
|
|
static const mon_cmd_t qmp_query_cmds[] = { |
|
|
|
{ |
|
|
|
.name = "version", |
|
|
|
.args_type = "", |
|
|
|
.params = "", |
|
|
|
.help = "show the version of QEMU", |
|
|
|
.user_print = do_info_version_print, |
|
|
|
.mhandler.info_new = do_info_version, |
|
|
|
}, |
|
|
|
{ |
|
|
|
.name = "commands", |
|
|
|
.args_type = "", |
|
|
|
@ -5185,9 +5145,9 @@ void monitor_resume(Monitor *mon) |
|
|
|
|
|
|
|
static QObject *get_qmp_greeting(void) |
|
|
|
{ |
|
|
|
QObject *ver; |
|
|
|
QObject *ver = NULL; |
|
|
|
|
|
|
|
do_info_version(NULL, &ver); |
|
|
|
qmp_marshal_input_query_version(NULL, NULL, &ver); |
|
|
|
return qobject_from_jsonf("{'QMP':{'version': %p,'capabilities': []}}",ver); |
|
|
|
} |
|
|
|
|
|
|
|
|