diff options
author | alc <alc@FreeBSD.org> | 2015-06-08 04:59:32 +0000 |
---|---|---|
committer | alc <alc@FreeBSD.org> | 2015-06-08 04:59:32 +0000 |
commit | 263927b83eb3f591fcb01a2a15e606828ae34bd8 (patch) | |
tree | f9c2521dff01a6c7c42ed915639dab5baafcae3d /sys/powerpc | |
parent | 440bb648898820e493ba0291411c6cd04de5c277 (diff) | |
download | FreeBSD-src-263927b83eb3f591fcb01a2a15e606828ae34bd8.zip FreeBSD-src-263927b83eb3f591fcb01a2a15e606828ae34bd8.tar.gz |
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
Diffstat (limited to 'sys/powerpc')
-rw-r--r-- | sys/powerpc/include/vmparam.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/powerpc/include/vmparam.h b/sys/powerpc/include/vmparam.h index c79a7c5..5b808ab 100644 --- a/sys/powerpc/include/vmparam.h +++ b/sys/powerpc/include/vmparam.h @@ -136,13 +136,12 @@ struct pmap_physseg { #endif /* - * 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 |