From patchwork Sat Sep 17 20:00:34 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Weil X-Patchwork-Id: 115163 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 3F0F6B70C6 for ; Sun, 18 Sep 2011 06:01:16 +1000 (EST) Received: from localhost ([::1]:55324 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R514Y-0001zz-QS for incoming@patchwork.ozlabs.org; Sat, 17 Sep 2011 16:01:10 -0400 Received: from eggs.gnu.org ([140.186.70.92]:43516) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R514I-0001oS-Ht for qemu-devel@nongnu.org; Sat, 17 Sep 2011 16:00:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R514G-0007k2-Uh for qemu-devel@nongnu.org; Sat, 17 Sep 2011 16:00:54 -0400 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:56027) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R514G-0007jl-QC for qemu-devel@nongnu.org; Sat, 17 Sep 2011 16:00:52 -0400 Received: from localhost (v220110690675601.yourvserver.net.local [127.0.0.1]) by v220110690675601.yourvserver.net (Postfix) with ESMTP id 4EC597283387; Sat, 17 Sep 2011 22:00:52 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at weilnetz.de Received: from v220110690675601.yourvserver.net ([127.0.0.1]) by localhost (v220110690675601.yourvserver.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Vh11aMkAkFw4; Sat, 17 Sep 2011 22:00:51 +0200 (CEST) Received: from flocke.weilnetz.de (p5086E8FB.dip.t-dialin.net [80.134.232.251]) by v220110690675601.yourvserver.net (Postfix) with ESMTPSA id 678537283385; Sat, 17 Sep 2011 22:00:47 +0200 (CEST) Received: from stefan by flocke.weilnetz.de with local (Exim 4.72) (envelope-from ) id 1R514A-0004tx-HP; Sat, 17 Sep 2011 22:00:46 +0200 From: Stefan Weil To: QEMU Developers Date: Sat, 17 Sep 2011 22:00:34 +0200 Message-Id: <1316289634-18786-8-git-send-email-weil@mail.berlios.de> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <4E74FC29.1050003@mail.berlios.de> References: <4E74FC29.1050003@mail.berlios.de> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 78.47.199.172 Subject: [Qemu-devel] [PATCH 8/8] ppc: Support tcg interpreter on ppc hosts 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 Tests of the tcg interpreter on an (emulated) ppc host needed this small change. Signed-off-by: Stefan Weil --- cache-utils.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/cache-utils.h b/cache-utils.h index 0b65907..7c3b282 100644 --- a/cache-utils.h +++ b/cache-utils.h @@ -1,7 +1,7 @@ #ifndef QEMU_CACHE_UTILS_H #define QEMU_CACHE_UTILS_H -#if defined(_ARCH_PPC) +#if defined(_ARCH_PPC) && !defined(CONFIG_TCG_INTERPRETER) struct qemu_cache_conf { unsigned long dcache_bsize; unsigned long icache_bsize;