From owner-svn-src-user@FreeBSD.ORG Tue Apr 6 01:32:12 2010 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7E78E106564A; Tue, 6 Apr 2010 01:32:12 +0000 (UTC) (envelope-from jmallett@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6D00E8FC08; Tue, 6 Apr 2010 01:32:12 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o361WCgD005318; Tue, 6 Apr 2010 01:32:12 GMT (envelope-from jmallett@svn.freebsd.org) Received: (from jmallett@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o361WCib005316; Tue, 6 Apr 2010 01:32:12 GMT (envelope-from jmallett@svn.freebsd.org) Message-Id: <201004060132.o361WCib005316@svn.freebsd.org> From: Juli Mallett Date: Tue, 6 Apr 2010 01:32:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r206238 - user/jmallett/octeon/sys/mips/include X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Apr 2010 01:32:12 -0000 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