From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LMTmm-0000wu-Fh for qemu-devel@nongnu.org; Mon, 12 Jan 2009 15:53:24 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LMTml-0000vg-B9 for qemu-devel@nongnu.org; Mon, 12 Jan 2009 15:53:23 -0500 Received: from [199.232.76.173] (port=53597 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LMTml-0000vY-3j for qemu-devel@nongnu.org; Mon, 12 Jan 2009 15:53:23 -0500 Received: from amistad.itbs.cz ([81.0.238.226]:55504) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LMTmk-0003sm-Mz for qemu-devel@nongnu.org; Mon, 12 Jan 2009 15:53:22 -0500 Message-ID: <496BADBB.6010109@jermar.eu> Date: Mon, 12 Jan 2009 21:53:15 +0100 From: Jakub Jermar MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] sparc64's get_physical_address_code should not fault on TTE's with V=0 Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Blue Swirl Cc: qemu-devel@nongnu.org Hi, when I make the following change to helper.c, get_physical_address_code: - // ctx match, vaddr match? + // ctx match, vaddr match, valid? if (env->dmmuregs[1] == (env->itlb_tag[i] & 0x1fff) && - (address & mask) == (env->itlb_tag[i] & ~0x1fffULL)) { - // valid, access ok? - if ((env->itlb_tte[i] & 0x8000000000000000ULL) == 0 || - ((env->itlb_tte[i] & 0x4) && is_user)) { + (address & mask) == (env->itlb_tag[i] & ~0x1fffULL) && + env->itlb_tte[i] & 0x8000000000000000ULL) { + // access ok? + if ((env->itlb_tte[i] & 0x4) && is_user) { HelenOS gets a little bit further than without this change and seems to panic more or less gracefully later. In short, non-valid entries should be skipped by the loop in get_physical_address_code instead of causing TFAULT, because the ITLB can contain a valid entry for the same address. The same is true for DTLB. Can you confirm this? Thanks, Jakub