From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Lapnt-0000S0-5S for qemu-devel@nongnu.org; Sat, 21 Feb 2009 06:13:53 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Lapns-0000Re-NW for qemu-devel@nongnu.org; Sat, 21 Feb 2009 06:13:52 -0500 Received: from [199.232.76.173] (port=58788 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Lapns-0000RY-CY for qemu-devel@nongnu.org; Sat, 21 Feb 2009 06:13:52 -0500 Received: from savannah.gnu.org ([199.232.41.3]:59649 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Lapns-0003OA-3l for qemu-devel@nongnu.org; Sat, 21 Feb 2009 06:13:52 -0500 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1Lapnr-000338-IC for qemu-devel@nongnu.org; Sat, 21 Feb 2009 11:13:51 +0000 Received: from blueswir1 by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1Lapnr-000333-Cn for qemu-devel@nongnu.org; Sat, 21 Feb 2009 11:13:51 +0000 MIME-Version: 1.0 Errors-To: blueswir1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Blue Swirl Message-Id: Date: Sat, 21 Feb 2009 11:13:51 +0000 Subject: [Qemu-devel] [6636] Turn MMUs and caches off on reset 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 Revision: 6636 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6636 Author: blueswir1 Date: 2009-02-21 11:13:51 +0000 (Sat, 21 Feb 2009) Log Message: ----------- Turn MMUs and caches off on reset Modified Paths: -------------- trunk/target-sparc/helper.c Modified: trunk/target-sparc/helper.c =================================================================== --- trunk/target-sparc/helper.c 2009-02-21 11:13:10 UTC (rev 6635) +++ trunk/target-sparc/helper.c 2009-02-21 11:13:51 UTC (rev 6636) @@ -663,6 +663,7 @@ env->pstate = PS_PRIV; env->hpstate = HS_PRIV; env->tsptr = &env->ts[env->tl & MAXTL_MASK]; + env->lsu = 0; #else env->mmuregs[0] &= ~(MMU_E | MMU_NF); env->mmuregs[0] |= env->def->mmu_bm;