From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KUIGL-0006dg-L3 for qemu-devel@nongnu.org; Sat, 16 Aug 2008 05:39:57 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KUIGI-0006aP-6Y for qemu-devel@nongnu.org; Sat, 16 Aug 2008 05:39:56 -0400 Received: from [199.232.76.173] (port=39143 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KUIGG-0006ZS-TK for qemu-devel@nongnu.org; Sat, 16 Aug 2008 05:39:53 -0400 Received: from fmmailgate01.web.de ([217.72.192.221]:53698) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KUIGG-0001C2-E2 for qemu-devel@nongnu.org; Sat, 16 Aug 2008 05:39:52 -0400 Received: from smtp06.web.de (fmsmtp06.dlan.cinetic.de [172.20.5.172]) by fmmailgate01.web.de (Postfix) with ESMTP id 49DA8EB36325 for ; Sat, 16 Aug 2008 11:39:51 +0200 (CEST) Received: from [88.64.23.108] (helo=[192.168.1.198]) by smtp06.web.de with asmtp (TLSv1:AES256-SHA:256) (WEB.DE 4.109 #226) id 1KUIGF-0001gc-00 for qemu-devel@nongnu.org; Sat, 16 Aug 2008 11:39:51 +0200 Resent-To: qemu-devel@nongnu.org Resent-Message-Id: <48A6A060.9040207@web.de> Message-ID: <48A69B64.7050001@web.de> Date: Sat, 16 Aug 2008 11:28:11 +0200 From: Jan Kiszka MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Sender: jan.kiszka@web.de Subject: [Qemu-devel] [PATCH 0/5] linux-user: Detect and fix 32-bit guest on 64-bit host issues - v2 Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org This series deals with address space mapping issues around h2g/g2h that currently exist on 64-bit hosts running 32-bit Linux user-space guests. The first 3 patches are taken unmodified from -v1 of this series (except for a compiler warning fix in 2). The 4th and 5th are new, hopefully addressing the bug in page_find_alloc correctly now. This series fixes the problem reported here: http://permalink.gmane.org/gmane.comp.emulators.qemu/26987 Jan