]> Git Repo - qemu.git/commitdiff
dump-guest-memory: add dump_in_progress() helper function
authorPeter Xu <[email protected]>
Thu, 18 Feb 2016 05:16:49 +0000 (13:16 +0800)
committerPaolo Bonzini <[email protected]>
Mon, 22 Feb 2016 17:40:28 +0000 (18:40 +0100)
For now, it has no effect. It will be used in dump detach support.

Signed-off-by: Peter Xu <[email protected]>
Reviewed-by: Fam Zheng <[email protected]>
Message-Id: <1455772616[email protected]>
Signed-off-by: Paolo Bonzini <[email protected]>
dump.c
include/qemu-common.h
qmp.c

diff --git a/dump.c b/dump.c
index 434bc60bc9850bbaa6cbdedc215c58e9872b9ad1..158d6ea915d306fd88f780967c4ce6f4a03745ca 100644 (file)
--- a/dump.c
+++ b/dump.c
@@ -1450,6 +1450,12 @@ static void dump_state_prepare(DumpState *s)
     *s = (DumpState) { .status = DUMP_STATUS_ACTIVE };
 }
 
+bool dump_in_progress(void)
+{
+    DumpState *state = &dump_state_global;
+    return (state->status == DUMP_STATUS_ACTIVE);
+}
+
 static void dump_init(DumpState *s, int fd, bool has_format,
                       DumpGuestMemoryFormat format, bool paging, bool has_filter,
                       int64_t begin, int64_t length, Error **errp)
@@ -1628,6 +1634,13 @@ void qmp_dump_guest_memory(bool paging, const char *file,
     DumpState *s;
     Error *local_err = NULL;
 
+    /* if there is a dump in background, we should wait until the dump
+     * finished */
+    if (dump_in_progress()) {
+        error_setg(errp, "There is a dump in process, please wait.");
+        return;
+    }
+
     /*
      * kdump-compressed format need the whole memory dumped, so paging or
      * filter is not supported here.
index f557be78e36430995647e166d3b29fbcea1c6f45..59ab7598d89adc7db17ef47605b506b231e89544 100644 (file)
@@ -494,4 +494,8 @@ int parse_debug_env(const char *name, int max, int initial);
 const char *qemu_ether_ntoa(const MACAddr *mac);
 void page_size_init(void);
 
+/* returns non-zero if dump is in progress, otherwise zero is
+ * returned. */
+bool dump_in_progress(void);
+
 #endif
diff --git a/qmp.c b/qmp.c
index 9a93d5e246f32cafbe95526822e479fea3bc15f1..3f16a77b444bdd318dbe21af0efe67e9cf9b9e63 100644 (file)
--- a/qmp.c
+++ b/qmp.c
@@ -103,6 +103,13 @@ void qmp_quit(Error **errp)
 
 void qmp_stop(Error **errp)
 {
+    /* if there is a dump in background, we should wait until the dump
+     * finished */
+    if (dump_in_progress()) {
+        error_setg(errp, "There is a dump in process, please wait.");
+        return;
+    }
+
     if (runstate_check(RUN_STATE_INMIGRATE)) {
         autostart = 0;
     } else {
@@ -175,6 +182,13 @@ void qmp_cont(Error **errp)
     BlockBackend *blk;
     BlockDriverState *bs;
 
+    /* if there is a dump in background, we should wait until the dump
+     * finished */
+    if (dump_in_progress()) {
+        error_setg(errp, "There is a dump in process, please wait.");
+        return;
+    }
+
     if (runstate_needs_reset()) {
         error_setg(errp, "Resetting the Virtual Machine is required");
         return;
This page took 0.033511 seconds and 4 git commands to generate.