From patchwork Tue Dec 6 11:01:14 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 129626 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 11C071007D5 for ; Tue, 6 Dec 2011 22:07:10 +1100 (EST) Received: from localhost ([::1]:38248 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RXsrP-0004gz-FY for incoming@patchwork.ozlabs.org; Tue, 06 Dec 2011 06:06:55 -0500 Received: from eggs.gnu.org ([140.186.70.92]:38914) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RXsr0-0003Si-EL for qemu-devel@nongnu.org; Tue, 06 Dec 2011 06:06:31 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RXsqu-0006IX-Rh for qemu-devel@nongnu.org; Tue, 06 Dec 2011 06:06:30 -0500 Received: from e06smtp13.uk.ibm.com ([195.75.94.109]:44584) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RXsqu-0006IQ-GT for qemu-devel@nongnu.org; Tue, 06 Dec 2011 06:06:24 -0500 Received: from /spool/local by e06smtp13.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 6 Dec 2011 11:06:23 -0000 Received: from d06nrmr1806.portsmouth.uk.ibm.com ([9.149.39.193]) by e06smtp13.uk.ibm.com ([192.168.101.143]) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Tue, 6 Dec 2011 11:06:03 -0000 Received: from d06av06.portsmouth.uk.ibm.com (d06av06.portsmouth.uk.ibm.com [9.149.37.217]) by d06nrmr1806.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id pB6B62JZ2494604 for ; Tue, 6 Dec 2011 11:06:02 GMT Received: from d06av06.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av06.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id pB6B5sPj017746 for ; Tue, 6 Dec 2011 04:05:54 -0700 Received: from localhost (stefanha-thinkpad.manchester-maybrook.uk.ibm.com [9.174.219.31]) by d06av06.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id pB6B5qOf017625; Tue, 6 Dec 2011 04:05:53 -0700 From: Stefan Hajnoczi To: Date: Tue, 6 Dec 2011 11:01:14 +0000 Message-Id: <1323169274-31657-20-git-send-email-stefanha@linux.vnet.ibm.com> X-Mailer: git-send-email 1.7.7.3 In-Reply-To: <1323169274-31657-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1323169274-31657-1-git-send-email-stefanha@linux.vnet.ibm.com> x-cbid: 11120611-2966-0000-0000-0000028814A3 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 195.75.94.109 Cc: Anthony Liguori , Chen Rui Subject: [Qemu-devel] [PATCH 19/19] mips_malta: resolve endless loop when loading bios 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: Chen Rui Tested-by: Stefan Weil Signed-off-by: Chen Rui --- hw/mips_malta.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/hw/mips_malta.c b/hw/mips_malta.c index bb49749..e7dfbd6 100644 --- a/hw/mips_malta.c +++ b/hw/mips_malta.c @@ -911,6 +911,7 @@ void mips_malta_init (ram_addr_t ram_size, uint32_t *end = addr + bios_size; while (addr < end) { bswap32s(addr); + addr++; } } #endif