diff options
author | alc <alc@FreeBSD.org> | 2007-04-19 04:52:47 +0000 |
---|---|---|
committer | alc <alc@FreeBSD.org> | 2007-04-19 04:52:47 +0000 |
commit | 6e14b3e802364a0e6b4386c8c50a8b47abf48441 (patch) | |
tree | b72e56f10ed1e86e332618f2160c1dc8845c0d36 /sys/vm | |
parent | 95e9f5610b146de8c256d5b3b928a80f3cfcf46d (diff) | |
download | FreeBSD-src-6e14b3e802364a0e6b4386c8c50a8b47abf48441.zip FreeBSD-src-6e14b3e802364a0e6b4386c8c50a8b47abf48441.tar.gz |
Correct two comments.
Submitted by: Michael Plass
Diffstat (limited to 'sys/vm')
-rw-r--r-- | sys/vm/vm_param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/vm_param.h b/sys/vm/vm_param.h index dc3abe7..3c1938a 100644 --- a/sys/vm/vm_param.h +++ b/sys/vm/vm_param.h @@ -79,8 +79,8 @@ #define VM_V_FREE_TARGET 4 /* cnt.v_free_target */ #define VM_V_FREE_RESERVED 5 /* cnt.v_free_reserved */ #define VM_V_INACTIVE_TARGET 6 /* cnt.v_inactive_target */ -#define VM_V_CACHE_MIN 7 /* cnt.v_cache_max */ -#define VM_V_CACHE_MAX 8 /* cnt.v_cache_min */ +#define VM_V_CACHE_MIN 7 /* cnt.v_cache_min */ +#define VM_V_CACHE_MAX 8 /* cnt.v_cache_max */ #define VM_V_PAGEOUT_FREE_MIN 9 /* cnt.v_pageout_free_min */ #define VM_PAGEOUT_ALGORITHM 10 /* pageout algorithm */ #define VM_SWAPPING_ENABLED 11 /* swapping enabled */ |