Remove references to L1 in the comments, according to Alan they are

historical leftovers.

Approved by:	alc
This commit is contained in:
Alexander Leidinger 2004-06-07 19:33:05 +00:00
parent af693a70b1
commit b1dabb2606
2 changed files with 7 additions and 7 deletions

View File

@ -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:

View File

@ -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().