mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
monitor: Port handler_1 to use QDict
This commit ports command handlers that receive one argument to use the new monitor's dictionary. Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
f96fc8a0f1
commit
d54908a55b
8 changed files with 67 additions and 47 deletions
6
savevm.c
6
savevm.c
|
@ -1480,7 +1480,7 @@ static int bdrv_snapshot_find(BlockDriverState *bs, QEMUSnapshotInfo *sn_info,
|
|||
return ret;
|
||||
}
|
||||
|
||||
void do_savevm(Monitor *mon, const char *name)
|
||||
void do_savevm(Monitor *mon, const QDict *qdict)
|
||||
{
|
||||
DriveInfo *dinfo;
|
||||
BlockDriverState *bs, *bs1;
|
||||
|
@ -1494,6 +1494,7 @@ void do_savevm(Monitor *mon, const char *name)
|
|||
#else
|
||||
struct timeval tv;
|
||||
#endif
|
||||
const char *name = qdict_get_try_str(qdict, "name");
|
||||
|
||||
bs = get_bs_snapshots();
|
||||
if (!bs) {
|
||||
|
@ -1644,11 +1645,12 @@ int load_vmstate(Monitor *mon, const char *name)
|
|||
return 0;
|
||||
}
|
||||
|
||||
void do_delvm(Monitor *mon, const char *name)
|
||||
void do_delvm(Monitor *mon, const QDict *qdict)
|
||||
{
|
||||
DriveInfo *dinfo;
|
||||
BlockDriverState *bs, *bs1;
|
||||
int ret;
|
||||
const char *name = qdict_get_str(qdict, "name");
|
||||
|
||||
bs = get_bs_snapshots();
|
||||
if (!bs) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue