summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzont <zont@FreeBSD.org>2013-07-29 18:48:51 +0000
committerzont <zont@FreeBSD.org>2013-07-29 18:48:51 +0000
commitf6b004c36a12554e599bc79d3f4efc2047574d1b (patch)
treeba125199daba50153902bf5ff5a32ce6b8ecc21d
parent4c0b5de7011433e908a2b3ac88474d3d16f0cf78 (diff)
downloadFreeBSD-src-f6b004c36a12554e599bc79d3f4efc2047574d1b.zip
FreeBSD-src-f6b004c36a12554e599bc79d3f4efc2047574d1b.tar.gz
Unbreak sysctl ABI changes introduced in r253662
Requested by: bde
-rw-r--r--sys/vm/vm_param.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/vm/vm_param.h b/sys/vm/vm_param.h
index 44306be..22401fd 100644
--- a/sys/vm/vm_param.h
+++ b/sys/vm/vm_param.h
@@ -82,8 +82,9 @@
#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_SWAPPING_ENABLED 10 /* swapping enabled */
-#define VM_MAXID 11 /* number of valid vm ids */
+#define VM_OBSOLETE_10 10 /* pageout algorithm */
+#define VM_SWAPPING_ENABLED 11 /* swapping enabled */
+#define VM_MAXID 12 /* number of valid vm ids */
#define CTL_VM_NAMES { \
{ 0, 0 }, \
@@ -96,6 +97,7 @@
{ "v_cache_min", CTLTYPE_UINT }, \
{ "v_cache_max", CTLTYPE_UINT }, \
{ "v_pageout_free_min", CTLTYPE_UINT}, \
+ { "obsolete_pageout_algorithm", CTLTYPE_INT}, \
{ "swap_enabled", CTLTYPE_INT},\
}
OpenPOWER on IntegriCloud