]> Git Repo - qemu.git/commitdiff
dump: Acquire BQL around vm_start() in dump thread
authorFam Zheng <[email protected]>
Wed, 3 May 2017 07:28:19 +0000 (15:28 +0800)
committerPaolo Bonzini <[email protected]>
Fri, 5 May 2017 10:10:00 +0000 (12:10 +0200)
This fixes an assertion failure in the following backtrace:

    __GI___assert_fail
    memory_region_transaction_commit
    memory_region_add_eventfd
    virtio_pci_ioeventfd_assign
    virtio_bus_set_host_notifier
    virtio_blk_data_plane_start
    virtio_bus_start_ioeventfd
    virtio_vmstate_change
    vm_state_notify
    vm_prepare_start
    vm_start
    dump_cleanup
    dump_process
    dump_thread
    start_thread
    clone

vm_start need BQL, acquire it if doing cleaning up from main thread.

Signed-off-by: Fam Zheng <[email protected]>
Message-Id: <20170503072819[email protected]>
Signed-off-by: Paolo Bonzini <[email protected]>
dump.c
include/sysemu/dump.h

diff --git a/dump.c b/dump.c
index f7b80d856b3b1342ed43a510fd744f0507d079a8..d9090a24cce6f2d4491f93124fec0f61b7d7704e 100644 (file)
--- a/dump.c
+++ b/dump.c
@@ -77,7 +77,13 @@ static int dump_cleanup(DumpState *s)
     memory_mapping_list_free(&s->list);
     close(s->fd);
     if (s->resume) {
+        if (s->detached) {
+            qemu_mutex_lock_iothread();
+        }
         vm_start();
+        if (s->detached) {
+            qemu_mutex_unlock_iothread();
+        }
     }
 
     return 0;
@@ -1804,6 +1810,7 @@ void qmp_dump_guest_memory(bool paging, const char *file,
 
     if (detach_p) {
         /* detached dump */
+        s->detached = true;
         qemu_thread_create(&s->dump_thread, "dump_thread", dump_thread,
                            s, QEMU_THREAD_DETACHED);
     } else {
index ef931be4694ea2b167a9b308635d6950d210166d..2672a15f8ba4056085a8e8a54213ebfd7689b44c 100644 (file)
@@ -157,6 +157,7 @@ typedef struct DumpState {
     uint32_t sh_info;
     bool have_section;
     bool resume;
+    bool detached;
     ssize_t note_size;
     hwaddr memory_offset;
     int fd;
This page took 0.030051 seconds and 4 git commands to generate.