summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/conf/NOTES10
-rw-r--r--sys/vm/vm_pageq.c4
2 files changed, 7 insertions, 7 deletions
diff --git a/sys/conf/NOTES b/sys/conf/NOTES
index 3213eee..1a15e13 100644
--- a/sys/conf/NOTES
+++ b/sys/conf/NOTES
@@ -103,13 +103,13 @@ options BLKDEV_IOSIZE=8192
# Options for the VM subsystem
# L2 cache size (in KB) can be specified in PQ_CACHESIZE
-options PQ_CACHESIZE=512 # color for 512k/16k cache
+options PQ_CACHESIZE=512 # color for 512k cache
# Deprecated options supported for backwards compatibility
#options PQ_NOOPT # No coloring
-#options PQ_LARGECACHE # color for 512k/16k cache
-#options PQ_HUGECACHE # color for 1024k/16k cache
-#options PQ_MEDIUMCACHE # color for 256k/16k cache
-#options PQ_NORMALCACHE # color for 64k/16k cache
+#options PQ_LARGECACHE # color for 512k cache
+#options PQ_HUGECACHE # color for 1024k cache
+#options PQ_MEDIUMCACHE # color for 256k cache
+#options PQ_NORMALCACHE # color for 64k cache
# This allows you to actually store this configuration file into
# the kernel binary itself, where it may be later read by saying:
diff --git a/sys/vm/vm_pageq.c b/sys/vm/vm_pageq.c
index c82ddd8..ceda1e1 100644
--- a/sys/vm/vm_pageq.c
+++ b/sys/vm/vm_pageq.c
@@ -176,8 +176,8 @@ vm_pageq_remove(vm_page_t m)
*
* The page coloring optimization attempts to locate a page
* that does not overload other nearby pages in the object in
- * the cpu's L1 or L2 caches. We need this optimization because
- * cpu caches tend to be physical caches, while object spaces tend
+ * the cpu's L2 cache. We need this optimization because cpu
+ * caches tend to be physical caches, while object spaces tend
* to be virtual.
*
* This routine must be called at splvm().
OpenPOWER on IntegriCloud