From: Juan Quintela <quintela@redhat.com>
To: qemu-devel@nongnu.org
Cc: dgilbert@redhat.com, lvivier@redhat.com, peterx@redhat.com
Subject: [Qemu-devel] [PULL 06/10] monitor: Move hmp_savevm from savevm.c to hmp.c
Date: Thu, 4 May 2017 11:40:49 +0200 [thread overview]
Message-ID: <20170504094053.2329-7-quintela@redhat.com> (raw)
In-Reply-To: <20170504094053.2329-1-quintela@redhat.com>
It is a monitor command, and has nothing migration specific in it.
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Laurent Vivier <lvivier@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
---
hmp.c | 5 +++++
hmp.h | 1 +
include/sysemu/sysemu.h | 1 -
migration/savevm.c | 5 -----
4 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/hmp.c b/hmp.c
index f6b8738..a82a952 100644
--- a/hmp.c
+++ b/hmp.c
@@ -1281,6 +1281,11 @@ void hmp_loadvm(Monitor *mon, const QDict *qdict)
}
}
+void hmp_savevm(Monitor *mon, const QDict *qdict)
+{
+ save_vmstate(qdict_get_try_str(qdict, "name"));
+}
+
void hmp_migrate_cancel(Monitor *mon, const QDict *qdict)
{
qmp_migrate_cancel(NULL);
diff --git a/hmp.h b/hmp.h
index 385332c..b302c8d 100644
--- a/hmp.h
+++ b/hmp.h
@@ -64,6 +64,7 @@ void hmp_snapshot_delete_blkdev_internal(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_loadvm(Monitor *mon, const QDict *qdict);
+void hmp_savevm(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_set_downtime(Monitor *mon, const QDict *qdict);
diff --git a/include/sysemu/sysemu.h b/include/sysemu/sysemu.h
index b6daf9d..914c36c 100644
--- a/include/sysemu/sysemu.h
+++ b/include/sysemu/sysemu.h
@@ -75,7 +75,6 @@ void qemu_remove_exit_notifier(Notifier *notify);
void qemu_add_machine_init_done_notifier(Notifier *notify);
void qemu_remove_machine_init_done_notifier(Notifier *notify);
-void hmp_savevm(Monitor *mon, const QDict *qdict);
int save_vmstate(const char *name);
int load_vmstate(const char *name);
void hmp_delvm(Monitor *mon, const QDict *qdict);
diff --git a/migration/savevm.c b/migration/savevm.c
index a89af80..8345255 100644
--- a/migration/savevm.c
+++ b/migration/savevm.c
@@ -2171,11 +2171,6 @@ int save_vmstate(const char *name)
return ret;
}
-void hmp_savevm(Monitor *mon, const QDict *qdict)
-{
- save_vmstate(qdict_get_try_str(qdict, "name"));
-}
-
void qmp_xen_save_devices_state(const char *filename, Error **errp)
{
QEMUFile *f;
--
2.9.3
next prev parent reply other threads:[~2017-05-04 9:41 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-04 9:40 [Qemu-devel] [PULL 00/10] Migration PULL requset Juan Quintela
2017-05-04 9:40 ` [Qemu-devel] [PULL 01/10] ram: Split dirty bitmap by RAMBlock Juan Quintela
2017-05-04 9:40 ` [Qemu-devel] [PULL 02/10] migration: setup bi-directional I/O channel for exec: protocol Juan Quintela
2017-05-04 9:40 ` [Qemu-devel] [PULL 03/10] migration: to_dst_file at that point is NULL Juan Quintela
2017-05-04 9:40 ` [Qemu-devel] [PULL 04/10] monitor: Remove monitor parameter from save_vmstate Juan Quintela
2017-05-04 9:40 ` [Qemu-devel] [PULL 05/10] monitor: Move hmp_loadvm from monitor.c to hmp.c Juan Quintela
2017-05-04 9:40 ` Juan Quintela [this message]
2017-05-04 9:40 ` [Qemu-devel] [PULL 07/10] monitor: Move hmp_delvm from savevm.c " Juan Quintela
2017-05-04 9:40 ` [Qemu-devel] [PULL 08/10] monitor: Move hmp_info_snapshots " Juan Quintela
2017-05-04 9:40 ` [Qemu-devel] [PULL 09/10] migration: Move postcopy-ram.h to migration/ Juan Quintela
2017-05-04 9:40 ` [Qemu-devel] [PULL 10/10] migration: Extra tracing Juan Quintela
2017-05-05 15:54 ` [Qemu-devel] [PULL 00/10] Migration PULL requset Stefan Hajnoczi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170504094053.2329-7-quintela@redhat.com \
--to=quintela@redhat.com \
--cc=dgilbert@redhat.com \
--cc=lvivier@redhat.com \
--cc=peterx@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).