From patchwork Fri Aug 12 12:12:21 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 109837 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 32247B6F72 for ; Fri, 12 Aug 2011 22:28:28 +1000 (EST) Received: from localhost ([::1]:45482 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qrqqf-0006ru-Q1 for incoming@patchwork.ozlabs.org; Fri, 12 Aug 2011 08:28:25 -0400 Received: from eggs.gnu.org ([140.186.70.92]:53369) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qrqqa-0006nR-8C for qemu-devel@nongnu.org; Fri, 12 Aug 2011 08:28:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QrqqY-0003sC-Bh for qemu-devel@nongnu.org; Fri, 12 Aug 2011 08:28:20 -0400 Received: from mtagate3.uk.ibm.com ([194.196.100.163]:43203) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QrqqX-0003rm-UW for qemu-devel@nongnu.org; Fri, 12 Aug 2011 08:28:18 -0400 Received: from d06nrmr1806.portsmouth.uk.ibm.com (d06nrmr1806.portsmouth.uk.ibm.com [9.149.39.193]) by mtagate3.uk.ibm.com (8.13.1/8.13.1) with ESMTP id p7CCSGA4020530 for ; Fri, 12 Aug 2011 12:28:16 GMT Received: from d06av09.portsmouth.uk.ibm.com (d06av09.portsmouth.uk.ibm.com [9.149.37.250]) by d06nrmr1806.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p7CCQ0Qk2584584 for ; Fri, 12 Aug 2011 13:28:16 +0100 Received: from d06av09.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av09.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p7CCCNaG014721 for ; Fri, 12 Aug 2011 06:12:24 -0600 Received: from stefanha-thinkpad.manchester-maybrook.uk.ibm.com (dyn-9-174-219-30.manchester-maybrook.uk.ibm.com [9.174.219.30]) by d06av09.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id p7CCCMeN014677; Fri, 12 Aug 2011 06:12:23 -0600 From: Stefan Hajnoczi To: Date: Fri, 12 Aug 2011 13:12:21 +0100 Message-Id: <1313151141-8541-4-git-send-email-stefanha@linux.vnet.ibm.com> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1313151141-8541-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1313151141-8541-1-git-send-email-stefanha@linux.vnet.ibm.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Received-From: 194.196.100.163 Cc: Paolo Bonzini , Anthony Liguori , Stefan Hajnoczi Subject: [Qemu-devel] [PATCH 3/3] fix QLIST usage for RAM list X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Paolo Bonzini Spotted while reviewing the migration thread patches. Signed-off-by: Paolo Bonzini Signed-off-by: Stefan Hajnoczi --- 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 be7e4b2..63adb18 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;