summaryrefslogtreecommitdiffstats
path: root/exec.c
diff options
context:
space:
mode:
authorPaolo Bonzini2011-08-12 13:18:14 +0200
committerStefan Hajnoczi2011-08-12 14:07:58 +0200
commit85d59fef9defc78790c8b6cee833d4a77c22a490 (patch)
tree89371106352e65a381f7a446e6f8b3f42952a58b /exec.c
parenthw/qdev: Don't crash if qdev_create(NULL, ...) fails (diff)
downloadqemu-85d59fef9defc78790c8b6cee833d4a77c22a490.tar.gz
qemu-85d59fef9defc78790c8b6cee833d4a77c22a490.tar.xz
qemu-85d59fef9defc78790c8b6cee833d4a77c22a490.zip
fix QLIST usage for RAM list
Spotted while reviewing the migration thread patches. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'exec.c')
-rw-r--r--exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/exec.c b/exec.c
index be7e4b2451..63adb189e7 100644
--- a/exec.c
+++ b/exec.c
@@ -110,7 +110,7 @@ static uint8_t *code_gen_ptr;
int phys_ram_fd;
static int in_migration;
-RAMList ram_list = { .blocks = QLIST_HEAD_INITIALIZER(ram_list) };
+RAMList ram_list = { .blocks = QLIST_HEAD_INITIALIZER(ram_list.blocks) };
static MemoryRegion *system_memory;
static MemoryRegion *system_io;