svn commit: r214686 - head/sys/x86/x86

John Baldwin jhb at FreeBSD.org
Tue Nov 2 20:16:41 UTC 2010


Author: jhb
Date: Tue Nov  2 20:16:41 2010
New Revision: 214686
URL: http://svn.freebsd.org/changeset/base/214686

Log:
  Cosmetic change to revert one of my earlier ones.
  #if __i386__ && PAE is identical to just #if PAE since PAE is only a valid
  option for i386.
  
  Submitted by:	attilio

Modified:
  head/sys/x86/x86/nexus.c

Modified: head/sys/x86/x86/nexus.c
==============================================================================
--- head/sys/x86/x86/nexus.c	Tue Nov  2 20:06:49 2010	(r214685)
+++ head/sys/x86/x86/nexus.c	Tue Nov  2 20:16:41 2010	(r214686)
@@ -728,7 +728,7 @@ ram_attach(device_t dev)
 	 * segment is 0.
 	 */
 	for (rid = 0, p = dump_avail; p[1] != 0; rid++, p += 2) {
-#if defined(__i386__) && defined(PAE)
+#ifdef PAE
 		/*
 		 * Resources use long's to track resources, so we can't
 		 * include memory regions above 4GB.


More information about the svn-src-all mailing list