From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:60341) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QNKaP-0004ig-0u for qemu-devel@nongnu.org; Fri, 20 May 2011 03:57:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QNKaM-0004Md-Qf for qemu-devel@nongnu.org; Fri, 20 May 2011 03:57:28 -0400 Received: from cantor2.suse.de ([195.135.220.15]:43394 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QNKaM-0004MB-LZ for qemu-devel@nongnu.org; Fri, 20 May 2011 03:57:26 -0400 Mime-Version: 1.0 (Apple Message framework v1084) Content-Type: text/plain; charset=us-ascii From: Alexander Graf In-Reply-To: <1305862499-12328-1-git-send-email-david@gibson.dropbear.id.au> Date: Fri, 20 May 2011 09:40:20 +0200 Content-Transfer-Encoding: 7bit Message-Id: References: <1305862499-12328-1-git-send-email-david@gibson.dropbear.id.au> Subject: Re: [Qemu-devel] [PATCH] Fix a bug in mtsr/mtsrin emulation on ppc64 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: David Gibson Cc: andreas.faerber@web.de, paulus@samba.org, qemu-devel@nongnu.org, kennethsalerno@yahoo.com On 20.05.2011, at 05:34, David Gibson wrote: > Early ppc64 CPUs include a hack to partially simulate the ppc32 segment > registers, by translating writes to them into writes to the SLB. This is > not used by any current Linux kernel, but it is used by the openbios used > in the qemu mac99 model. > > Commit 81762d6dd0d430d87024f2c83e9c4dcc4329fb7d, cleaning up the SLB > handling introduced a bug in this code, breaking the openbios currently in > qemu. Specifically, there was an off by one error bitshuffling the > register format used by mtsr into the format needed for the SLB load, > causing the flag bits to end up in the wrong place. This caused the > storage keys to be wrong under openbios, meaning that the translation code > incorrectly thought a legitimate access was a permission violation. > > This patch fixes the bug, at the same time it fixes some build bug in the > MMU debugging code (only exposed when DEBUG_MMU is enabled). Thanks, applied to ppc-next :) Alex