From owner-cvs-src-old@FreeBSD.ORG Tue Jan 26 03:39:20 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B4D9510656EF for ; Tue, 26 Jan 2010 03:39:20 +0000 (UTC) (envelope-from neel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A3C9A8FC1B for ; Tue, 26 Jan 2010 03:39:20 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o0Q3dKf9072196 for ; Tue, 26 Jan 2010 03:39:20 GMT (envelope-from neel@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o0Q3dKJq072195 for cvs-src-old@freebsd.org; Tue, 26 Jan 2010 03:39:20 GMT (envelope-from neel@repoman.freebsd.org) Message-Id: <201001260339.o0Q3dKJq072195@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to neel@repoman.freebsd.org using -f From: Neel Natu Date: Tue, 26 Jan 2010 03:39:10 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/mips/sibyte sb_machdep.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Jan 2010 03:39:20 -0000 neel 2010-01-26 03:39:10 UTC FreeBSD src repository Modified files: sys/mips/sibyte sb_machdep.c Log: SVN rev 203000 on 2010-01-26 03:39:10Z by neel Install the XTLB exception handler for Sibyte processors. This is a workaround for the fact that the CFE is compiled as a 64-bit application and therefore sets the SR_KX bit every time we call into it (for e.g. console). A TLB miss for any address above 0xc0000000 with the SR_KX bit set will end up at the XTLB exception vector. We workaround this by copying the standard TLB handler at the XTLB exception vector. Approved by: imp (mentor) Revision Changes Path 1.4 +24 -0 src/sys/mips/sibyte/sb_machdep.c