svn commit: r340301 - head/sys/conf

Ed Maste emaste at FreeBSD.org
Fri Nov 9 20:33:39 UTC 2018


Author: emaste
Date: Fri Nov  9 20:33:38 2018
New Revision: 340301
URL: https://svnweb.freebsd.org/changeset/base/340301

Log:
  Add comment to explain kernel ldscript 0x200000 constant
  
  Reported by:	linimon

Modified:
  head/sys/conf/ldscript.amd64

Modified: head/sys/conf/ldscript.amd64
==============================================================================
--- head/sys/conf/ldscript.amd64	Fri Nov  9 19:51:26 2018	(r340300)
+++ head/sys/conf/ldscript.amd64	Fri Nov  9 20:33:38 2018	(r340301)
@@ -6,7 +6,7 @@ SEARCH_DIR("/usr/lib");
 SECTIONS
 {
   /* Read-only sections, merged into text segment: */
-  kernphys = 0x200000;
+  kernphys = 0x200000; /* 2MB superpage size */
   . = kernbase + kernphys + SIZEOF_HEADERS;
   /*
    * Use the AT keyword in order to set the right LMA that contains


More information about the svn-src-all mailing list