diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2011-08-12 13:18:14 +0200 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | 2011-08-12 13:07:58 +0100 |
commit | 85d59fef9defc78790c8b6cee833d4a77c22a490 (patch) | |
tree | 89371106352e65a381f7a446e6f8b3f42952a58b /exec.c | |
parent | e92714c71a2f50b8420126e952cadb653fa0ef93 (diff) |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |