From 263927b83eb3f591fcb01a2a15e606828ae34bd8 Mon Sep 17 00:00:00 2001 From: alc Date: Mon, 8 Jun 2015 04:59:32 +0000 Subject: Retire VM_FREEPOOL_CACHE as the next step in eliminating PG_CACHE pages. Differential Revision: https://reviews.freebsd.org/D2712 Reviewed by: kib Sponsored by: EMC / Isilon Storage Division --- sys/mips/include/vmparam.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'sys/mips/include/vmparam.h') diff --git a/sys/mips/include/vmparam.h b/sys/mips/include/vmparam.h index 89caf27..020d0ac 100644 --- a/sys/mips/include/vmparam.h +++ b/sys/mips/include/vmparam.h @@ -149,13 +149,12 @@ #define VM_PHYSSEG_SPARSE /* - * Create three free page pools: VM_FREEPOOL_DEFAULT is the default pool + * Create two free page pools: VM_FREEPOOL_DEFAULT is the default pool * from which physical pages are allocated and VM_FREEPOOL_DIRECT is * the pool from which physical pages for small UMA objects are * allocated. */ -#define VM_NFREEPOOL 3 -#define VM_FREEPOOL_CACHE 2 +#define VM_NFREEPOOL 2 #define VM_FREEPOOL_DEFAULT 0 #define VM_FREEPOOL_DIRECT 1 -- cgit v1.1