Author: alc
Date: Sun Oct 26 17:56:47 2014
New Revision: 273701
URL: https://svnweb.freebsd.org/changeset/base/273701

Log:
  By the time that pmap_init() runs, vm_phys_segs[] has been initialized.  
Obtaining
  the end of memory address from vm_phys_segs[] is a little easier than 
obtaining it
  from phys_avail[].
  
  Discussed with:       Svatopluk Kraus

Modified:
  head/sys/amd64/amd64/pmap.c
  head/sys/arm/arm/pmap-v6.c
  head/sys/i386/i386/pmap.c

Modified: head/sys/amd64/amd64/pmap.c
==============================================================================
--- head/sys/amd64/amd64/pmap.c Sun Oct 26 17:50:33 2014        (r273700)
+++ head/sys/amd64/amd64/pmap.c Sun Oct 26 17:56:47 2014        (r273701)
@@ -131,6 +131,7 @@ __FBSDID("$FreeBSD$");
 #include <vm/vm_extern.h>
 #include <vm/vm_pageout.h>
 #include <vm/vm_pager.h>
+#include <vm/vm_phys.h>
 #include <vm/vm_radix.h>
 #include <vm/vm_reserv.h>
 #include <vm/uma.h>
@@ -1056,8 +1057,7 @@ pmap_init(void)
        /*
         * Calculate the size of the pv head table for superpages.
         */
-       for (i = 0; phys_avail[i + 1]; i += 2);
-       pv_npg = round_2mpage(phys_avail[(i - 2) + 1]) / NBPDR;
+       pv_npg = howmany(vm_phys_segs[vm_phys_nsegs - 1].end, NBPDR);
 
        /*
         * Allocate memory for the pv head table for superpages.

Modified: head/sys/arm/arm/pmap-v6.c
==============================================================================
--- head/sys/arm/arm/pmap-v6.c  Sun Oct 26 17:50:33 2014        (r273700)
+++ head/sys/arm/arm/pmap-v6.c  Sun Oct 26 17:56:47 2014        (r273701)
@@ -172,6 +172,7 @@ __FBSDID("$FreeBSD$");
 #include <vm/vm_map.h>
 #include <vm/vm_page.h>
 #include <vm/vm_pageout.h>
+#include <vm/vm_phys.h>
 #include <vm/vm_extern.h>
 #include <vm/vm_reserv.h>
 
@@ -1342,9 +1343,10 @@ pmap_init(void)
 
        /*
         * Calculate the size of the pv head table for superpages.
+        * Handle the possibility that "vm_phys_segs[...].end" is zero.
         */
-       for (i = 0; phys_avail[i + 1]; i += 2);
-       pv_npg = round_1mpage(phys_avail[(i - 2) + 1]) / NBPDR;
+       pv_npg = trunc_1mpage(vm_phys_segs[vm_phys_nsegs - 1].end -
+           PAGE_SIZE) / NBPDR + 1;
 
        /*
         * Allocate memory for the pv head table for superpages.

Modified: head/sys/i386/i386/pmap.c
==============================================================================
--- head/sys/i386/i386/pmap.c   Sun Oct 26 17:50:33 2014        (r273700)
+++ head/sys/i386/i386/pmap.c   Sun Oct 26 17:56:47 2014        (r273701)
@@ -133,6 +133,7 @@ __FBSDID("$FreeBSD$");
 #include <vm/vm_extern.h>
 #include <vm/vm_pageout.h>
 #include <vm/vm_pager.h>
+#include <vm/vm_phys.h>
 #include <vm/vm_radix.h>
 #include <vm/vm_reserv.h>
 #include <vm/uma.h>
@@ -778,9 +779,10 @@ pmap_init(void)
 
        /*
         * Calculate the size of the pv head table for superpages.
+        * Handle the possibility that "vm_phys_segs[...].end" is zero.
         */
-       for (i = 0; phys_avail[i + 1]; i += 2);
-       pv_npg = round_4mpage(phys_avail[(i - 2) + 1]) / NBPDR;
+       pv_npg = trunc_4mpage(vm_phys_segs[vm_phys_nsegs - 1].end -
+           PAGE_SIZE) / NBPDR + 1;
 
        /*
         * Allocate memory for the pv head table for superpages.
_______________________________________________
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