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 "
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to