Date: Thu, 19 Mar 2009 13:24:48 +0000 (UTC) From: Marius Strobl <marius@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org Subject: svn commit: r190043 - in stable/7/sys: . contrib/pf dev/ath/ath_hal dev/cxgb sparc64/sparc64 Message-ID: <200903191324.n2JDOmIU062786@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marius Date: Thu Mar 19 13:24:48 2009 New Revision: 190043 URL: http://svn.freebsd.org/changeset/base/190043 Log: MFC: r182774 When determining whether we trapped while in the PROM don't only check for addresses below the PROM range but also those above. Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/ath/ath_hal/ (props changed) stable/7/sys/dev/cxgb/ (props changed) stable/7/sys/sparc64/sparc64/exception.S Modified: stable/7/sys/sparc64/sparc64/exception.S ============================================================================== --- stable/7/sys/sparc64/sparc64/exception.S Thu Mar 19 13:18:28 2009 (r190042) +++ stable/7/sys/sparc64/sparc64/exception.S Thu Mar 19 13:24:48 2009 (r190043) @@ -2738,6 +2738,10 @@ ENTRY(tl1_ret) cmp %l1, %l5 bl,a,pt %xcc, 1f nop + set VM_MAX_PROM_ADDRESS, %l5 + cmp %l1, %l5 + bg,a,pt %xcc, 1f + nop wrpr %g0, PSTATE_NORMAL, %pstate
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200903191324.n2JDOmIU062786>