svn commit: r253978 - head/sys/powerpc/aim

Justin Hibbits jhibbits at FreeBSD.org
Tue Aug 6 02:58:17 UTC 2013


Author: jhibbits
Date: Tue Aug  6 02:58:16 2013
New Revision: 253978
URL: http://svnweb.freebsd.org/changeset/base/253978

Log:
  Remove an unnecessary panic.  The PVO's PTE entry and the PTEG's PTE entry may
  not match, if the PVO's PTE is invalid.

Modified:
  head/sys/powerpc/aim/mmu_oea.c

Modified: head/sys/powerpc/aim/mmu_oea.c
==============================================================================
--- head/sys/powerpc/aim/mmu_oea.c	Tue Aug  6 02:14:30 2013	(r253977)
+++ head/sys/powerpc/aim/mmu_oea.c	Tue Aug  6 02:58:16 2013	(r253978)
@@ -2161,9 +2161,6 @@ moea_pvo_to_pte(const struct pvo_entry *
 		    "pvo but no valid pte", pvo);
 	}
 
-	if (pvo->pvo_pte.pte.pte_hi != pt->pte_hi) {
-		panic("moea_pvo_to_pte: pvo does not match pte: pvo hi: %8x, pte hi: %8x", pvo->pvo_pte.pte.pte_hi, pt->pte_hi);
-	}
 	if ((pt->pte_hi ^ (pvo->pvo_pte.pte.pte_hi & ~PTE_VALID)) == PTE_VALID) {
 		if ((pvo->pvo_pte.pte.pte_hi & PTE_VALID) == 0) {
 			panic("moea_pvo_to_pte: pvo %p has valid pte in "


More information about the svn-src-head mailing list