svn commit: r316612 - head/sys/boot/i386/libi386

Benno Rice benno at FreeBSD.org
Fri Apr 7 15:41:50 UTC 2017


Author: benno
Date: Fri Apr  7 15:41:49 2017
New Revision: 316612
URL: https://svnweb.freebsd.org/changeset/base/316612

Log:
  In r298230 the value of HEAP_MIN was changed from 3MB to 64MB. Correct a
  comment that was still referencing the 3MB value.
  
  Sponsored by:	Dell EMC Isilon
  Discussed with:	jhb

Modified:
  head/sys/boot/i386/libi386/biosmem.c

Modified: head/sys/boot/i386/libi386/biosmem.c
==============================================================================
--- head/sys/boot/i386/libi386/biosmem.c	Fri Apr  7 15:39:41 2017	(r316611)
+++ head/sys/boot/i386/libi386/biosmem.c	Fri Apr  7 15:41:49 2017	(r316612)
@@ -200,7 +200,7 @@ bios_getmem(void)
 
     /*
      * If we have extended memory and did not find a suitable heap
-     * region in the SMAP, use the last 3MB of 'extended' memory as a
+     * region in the SMAP, use the last HEAP_MIN of 'extended' memory as a
      * high heap candidate.
      */
     if (bios_extmem >= HEAP_MIN && high_heap_size < HEAP_MIN) {


More information about the svn-src-all mailing list