From owner-svn-src-all@FreeBSD.ORG Fri May 31 19:20:20 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 07772C0D; Fri, 31 May 2013 19:20:20 +0000 (UTC) (envelope-from nparhar@gmail.com) Received: from mail-pd0-f175.google.com (mail-pd0-f175.google.com [209.85.192.175]) by mx1.freebsd.org (Postfix) with ESMTP id C200F898; Fri, 31 May 2013 19:20:19 +0000 (UTC) Received: by mail-pd0-f175.google.com with SMTP id 4so692180pdd.34 for ; Fri, 31 May 2013 12:20:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=IKadP4tM1Bs+v9Ac/aW4OmeA0lYB/cr3KKxYYhaO79k=; b=rJqdJGPFrUOUM9uE04SAsjerGx13G2XOwtdH0CaQksyv+vAkke6+748CfTx40ieb9+ FqPIprqtx4WxWZ0oTdYmyW7X7OZ18hAubAcMA6vtoGbjSsL4zjYDH7mJ6ycGm+gMWdCY xr/dIFiAGi1InxhSLMNa8Ao1LzpJY1LobR/t4GII3AjH0Gldmts5Kkf15j4TVDMb9Snu diKz0dPOsA2yqQxF85em5vgS5gM5Yp9EOpIPo0Srwo9MYOu6eL0TwCY0D+qcwsmfKdv0 FtvjM52Ovqi+pOOr3Kji8aJmK5rWSMuwcsdGDFdQ3WJMfuds8QS5ht57vbi+Zc4PilCy WJUQ== X-Received: by 10.66.163.5 with SMTP id ye5mr14871407pab.60.1370028019126; Fri, 31 May 2013 12:20:19 -0700 (PDT) Received: from [10.192.166.0] (stargate.chelsio.com. [67.207.112.58]) by mx.google.com with ESMTPSA id qh4sm51027592pac.8.2013.05.31.12.20.17 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 31 May 2013 12:20:18 -0700 (PDT) Sender: Navdeep Parhar Message-ID: <51A8F7EF.8030804@FreeBSD.org> Date: Fri, 31 May 2013 12:20:15 -0700 From: Navdeep Parhar User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130522 Thunderbird/17.0.6 MIME-Version: 1.0 To: John Baldwin Subject: Re: svn commit: r251191 - in stable/9/sys: conf x86/acpica References: <201305311913.r4VJDNCx025746@svn.freebsd.org> In-Reply-To: <201305311913.r4VJDNCx025746@svn.freebsd.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: svn-src-stable@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, svn-src-stable-9@freebsd.org X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 May 2013 19:20:20 -0000 On 05/31/13 12:13, John Baldwin wrote: > Author: jhb > Date: Fri May 31 19:13:22 2013 > New Revision: 251191 > URL: http://svnweb.freebsd.org/changeset/base/251191 > > Log: > MFC 246805: > Make VM_NDOMAIN a kernel option so that it can be enabled from a kernel > config file. Is this going to live long in 9? Or will be replaced with MAXMEMDOM like it was in head? Navdeep > > Modified: > stable/9/sys/conf/options > stable/9/sys/x86/acpica/srat.c > Directory Properties: > stable/9/sys/ (props changed) > stable/9/sys/conf/ (props changed) > > Modified: stable/9/sys/conf/options > ============================================================================== > --- stable/9/sys/conf/options Fri May 31 19:07:17 2013 (r251190) > +++ stable/9/sys/conf/options Fri May 31 19:13:22 2013 (r251191) > @@ -594,6 +594,7 @@ VFS_BIO_DEBUG opt_global.h > VM_KMEM_SIZE opt_vm.h > VM_KMEM_SIZE_SCALE opt_vm.h > VM_KMEM_SIZE_MAX opt_vm.h > +VM_NDOMAIN opt_vm.h > VM_NRESERVLEVEL opt_vm.h > VM_LEVEL_0_ORDER opt_vm.h > NO_SWAPPING opt_vm.h > > Modified: stable/9/sys/x86/acpica/srat.c > ============================================================================== > --- stable/9/sys/x86/acpica/srat.c Fri May 31 19:07:17 2013 (r251190) > +++ stable/9/sys/x86/acpica/srat.c Fri May 31 19:13:22 2013 (r251191) > @@ -28,6 +28,8 @@ > #include > __FBSDID("$FreeBSD$"); > > +#include "opt_vm.h" > + > #include > #include > #include >