Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 6 Apr 2010 01:32:12 +0000 (UTC)
From:      Juli Mallett <jmallett@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r206238 - user/jmallett/octeon/sys/mips/include
Message-ID:  <201004060132.o361WCib005316@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jmallett
Date: Tue Apr  6 01:32:12 2010
New Revision: 206238
URL: http://svn.freebsd.org/changeset/base/206238

Log:
  Most MIPS platforms have sparse (or at least gap-ridden) physical address spaces,
  don't waste a bunch of vm_page_t structrures on memory that's not going to exist.
  
  This may be too conservative of a definition of denseness.

Modified:
  user/jmallett/octeon/sys/mips/include/vmparam.h

Modified: user/jmallett/octeon/sys/mips/include/vmparam.h
==============================================================================
--- user/jmallett/octeon/sys/mips/include/vmparam.h	Tue Apr  6 01:17:47 2010	(r206237)
+++ user/jmallett/octeon/sys/mips/include/vmparam.h	Tue Apr  6 01:32:12 2010	(r206238)
@@ -168,9 +168,9 @@
 #define	VM_PHYSSEG_MAX		32
 
 /*
- * The physical address space is densely populated.
+ * The physical address space is sparsely populated.
  */
-#define	VM_PHYSSEG_DENSE
+#define	VM_PHYSSEG_SPARSE
 
 /*
  * Create three free page pools: VM_FREEPOOL_DEFAULT is the default pool



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201004060132.o361WCib005316>