svn commit: r351546 - head/sys/powerpc/booke

Justin Hibbits jhibbits at FreeBSD.org
Tue Aug 27 14:04:32 UTC 2019


Author: jhibbits
Date: Tue Aug 27 14:04:32 2019
New Revision: 351546
URL: https://svnweb.freebsd.org/changeset/base/351546

Log:
  Revert a part of r350883 that should never have gone in
  
  The wire_count change is not part of the unification, and doesn't even make
  sense.
  
  Reported by:	markj

Modified:
  head/sys/powerpc/booke/pmap.c

Modified: head/sys/powerpc/booke/pmap.c
==============================================================================
--- head/sys/powerpc/booke/pmap.c	Tue Aug 27 13:55:45 2019	(r351545)
+++ head/sys/powerpc/booke/pmap.c	Tue Aug 27 14:04:32 2019	(r351546)
@@ -2807,7 +2807,7 @@ retry:
 			if (vm_page_pa_tryrelock(pmap, PTE_PA(pte), &pa))
 				goto retry;
 			m = PHYS_TO_VM_PAGE(PTE_PA(pte));
-			m->wire_count++;
+			vm_page_wire(m);
 		}
 	}
 


More information about the svn-src-all mailing list