From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NmBMq-0003XW-Vx for qemu-devel@nongnu.org; Mon, 01 Mar 2010 14:33:25 -0500 Received: from [199.232.76.173] (port=35514 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NmBMp-0003W3-Oh for qemu-devel@nongnu.org; Mon, 01 Mar 2010 14:33:23 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1NmBMp-00067A-AM for qemu-devel@nongnu.org; Mon, 01 Mar 2010 14:33:23 -0500 Received: from mx20.gnu.org ([199.232.41.8]:19335) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NmBMo-000672-N0 for qemu-devel@nongnu.org; Mon, 01 Mar 2010 14:33:22 -0500 Received: from mail.codesourcery.com ([38.113.113.100]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NmBMn-000284-KQ for qemu-devel@nongnu.org; Mon, 01 Mar 2010 14:33:21 -0500 Message-ID: <4B8C167E.4070005@codesourcery.com> Date: Mon, 01 Mar 2010 22:33:18 +0300 From: Maxim Kuvyrkov MIME-Version: 1.0 References: <4B8C133D.2030900@codesourcery.com> In-Reply-To: <4B8C133D.2030900@codesourcery.com> Content-Type: multipart/mixed; boundary="------------050708080603010700070608" Subject: [Qemu-devel] [PATCH 4/4] Define MMAP_SHIFT for ColdFire List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org This is a multi-part message in MIME format. --------------050708080603010700070608 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit --------------050708080603010700070608 Content-Type: text/plain; x-mac-type="0"; x-mac-creator="0"; name="0004-Define-MMAP_SHIFT-for-ColdFire.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0004-Define-MMAP_SHIFT-for-ColdFire.patch" >>From c65168b123032ef2ab10c90254e4ac8bc6cb0120 Mon Sep 17 00:00:00 2001 From: Maxim Kuvyrkov Date: Mon, 1 Mar 2010 02:51:10 -0800 Subject: [PATCH 4/4] Define MMAP_SHIFT for ColdFire ColdFire has MMAP_SHIFT equal to TARGET_PAGE_BITS. Signed-off-by: Maxim Kuvyrkov --- target-m68k/cpu.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/target-m68k/cpu.h b/target-m68k/cpu.h index 6bafc40..6f652c5 100644 --- a/target-m68k/cpu.h +++ b/target-m68k/cpu.h @@ -210,6 +210,7 @@ void register_m68k_insns (CPUM68KState *env); #ifdef CONFIG_USER_ONLY /* Linux uses 8k pages. */ #define TARGET_PAGE_BITS 13 +#define MMAP_SHIFT TARGET_PAGE_BITS #else /* Smallest TLB entry size is 1k. */ #define TARGET_PAGE_BITS 10 -- 1.6.2.4 --------------050708080603010700070608--