From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:52800) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qrpl9-0001Kr-4i for qemu-devel@nongnu.org; Fri, 12 Aug 2011 07:18:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qrpl8-0006th-6P for qemu-devel@nongnu.org; Fri, 12 Aug 2011 07:18:39 -0400 Sender: Paolo Bonzini From: Paolo Bonzini Date: Fri, 12 Aug 2011 13:18:14 +0200 Message-Id: <1313147894-12524-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH] fix QLIST usage for RAM list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org Spotted while reviewing the migration thread patches. Signed-off-by: Paolo Bonzini --- cpu-all.h | 2 +- exec.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cpu-all.h b/cpu-all.h index fa0205c..f5c82cd 100644 --- a/cpu-all.h +++ b/cpu-all.h @@ -488,7 +488,7 @@ typedef struct RAMBlock { typedef struct RAMList { uint8_t *phys_dirty; - QLIST_HEAD(ram, RAMBlock) blocks; + QLIST_HEAD(, RAMBlock) blocks; } RAMList; extern RAMList ram_list; diff --git a/exec.c b/exec.c index 476b507..253f42c 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; -- 1.7.6