mirror of https://github.com/xqemu/xqemu.git
monitor: Move hmp_loadvm from monitor.c to hmp.c
We are going to move the rest of hmp snapshots functions there instead of monitor.c. Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Laurent Vivier <lvivier@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
This commit is contained in:
parent
c34c2f3701
commit
52b2620512
13
hmp.c
13
hmp.c
|
@ -19,6 +19,7 @@
|
||||||
#include "net/eth.h"
|
#include "net/eth.h"
|
||||||
#include "sysemu/char.h"
|
#include "sysemu/char.h"
|
||||||
#include "sysemu/block-backend.h"
|
#include "sysemu/block-backend.h"
|
||||||
|
#include "sysemu/sysemu.h"
|
||||||
#include "qemu/config-file.h"
|
#include "qemu/config-file.h"
|
||||||
#include "qemu/option.h"
|
#include "qemu/option.h"
|
||||||
#include "qemu/timer.h"
|
#include "qemu/timer.h"
|
||||||
|
@ -1268,6 +1269,18 @@ void hmp_snapshot_delete_blkdev_internal(Monitor *mon, const QDict *qdict)
|
||||||
hmp_handle_error(mon, &err);
|
hmp_handle_error(mon, &err);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void hmp_loadvm(Monitor *mon, const QDict *qdict)
|
||||||
|
{
|
||||||
|
int saved_vm_running = runstate_is_running();
|
||||||
|
const char *name = qdict_get_str(qdict, "name");
|
||||||
|
|
||||||
|
vm_stop(RUN_STATE_RESTORE_VM);
|
||||||
|
|
||||||
|
if (load_vmstate(name) == 0 && saved_vm_running) {
|
||||||
|
vm_start();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void hmp_migrate_cancel(Monitor *mon, const QDict *qdict)
|
void hmp_migrate_cancel(Monitor *mon, const QDict *qdict)
|
||||||
{
|
{
|
||||||
qmp_migrate_cancel(NULL);
|
qmp_migrate_cancel(NULL);
|
||||||
|
|
1
hmp.h
1
hmp.h
|
@ -63,6 +63,7 @@ void hmp_snapshot_blkdev_internal(Monitor *mon, const QDict *qdict);
|
||||||
void hmp_snapshot_delete_blkdev_internal(Monitor *mon, const QDict *qdict);
|
void hmp_snapshot_delete_blkdev_internal(Monitor *mon, const QDict *qdict);
|
||||||
void hmp_drive_mirror(Monitor *mon, const QDict *qdict);
|
void hmp_drive_mirror(Monitor *mon, const QDict *qdict);
|
||||||
void hmp_drive_backup(Monitor *mon, const QDict *qdict);
|
void hmp_drive_backup(Monitor *mon, const QDict *qdict);
|
||||||
|
void hmp_loadvm(Monitor *mon, const QDict *qdict);
|
||||||
void hmp_migrate_cancel(Monitor *mon, const QDict *qdict);
|
void hmp_migrate_cancel(Monitor *mon, const QDict *qdict);
|
||||||
void hmp_migrate_incoming(Monitor *mon, const QDict *qdict);
|
void hmp_migrate_incoming(Monitor *mon, const QDict *qdict);
|
||||||
void hmp_migrate_set_downtime(Monitor *mon, const QDict *qdict);
|
void hmp_migrate_set_downtime(Monitor *mon, const QDict *qdict);
|
||||||
|
|
13
monitor.c
13
monitor.c
|
@ -37,7 +37,6 @@
|
||||||
#include "net/slirp.h"
|
#include "net/slirp.h"
|
||||||
#include "sysemu/char.h"
|
#include "sysemu/char.h"
|
||||||
#include "ui/qemu-spice.h"
|
#include "ui/qemu-spice.h"
|
||||||
#include "sysemu/sysemu.h"
|
|
||||||
#include "sysemu/numa.h"
|
#include "sysemu/numa.h"
|
||||||
#include "monitor/monitor.h"
|
#include "monitor/monitor.h"
|
||||||
#include "qemu/config-file.h"
|
#include "qemu/config-file.h"
|
||||||
|
@ -1954,18 +1953,6 @@ void qmp_closefd(const char *fdname, Error **errp)
|
||||||
error_setg(errp, QERR_FD_NOT_FOUND, fdname);
|
error_setg(errp, QERR_FD_NOT_FOUND, fdname);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void hmp_loadvm(Monitor *mon, const QDict *qdict)
|
|
||||||
{
|
|
||||||
int saved_vm_running = runstate_is_running();
|
|
||||||
const char *name = qdict_get_str(qdict, "name");
|
|
||||||
|
|
||||||
vm_stop(RUN_STATE_RESTORE_VM);
|
|
||||||
|
|
||||||
if (load_vmstate(name) == 0 && saved_vm_running) {
|
|
||||||
vm_start();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
int monitor_get_fd(Monitor *mon, const char *fdname, Error **errp)
|
int monitor_get_fd(Monitor *mon, const char *fdname, Error **errp)
|
||||||
{
|
{
|
||||||
mon_fd_t *monfd;
|
mon_fd_t *monfd;
|
||||||
|
|
Loading…
Reference in New Issue