Make VM_NDOMAIN a kernel option so that it can be enabled from a kernel

config file.

Requested by:	phk (ages ago)
MFC after:	1 month
This commit is contained in:
John Baldwin 2013-02-14 19:38:04 +00:00
parent e593549587
commit 174b5f3850
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=246805
3 changed files with 4 additions and 0 deletions

View file

@ -588,6 +588,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

View file

@ -40,6 +40,7 @@
__FBSDID("$FreeBSD$");
#include "opt_ddb.h"
#include "opt_vm.h"
#include <sys/param.h>
#include <sys/systm.h>

View file

@ -28,6 +28,8 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include "opt_vm.h"
#include <sys/param.h>
#include <sys/bus.h>
#include <sys/kernel.h>