Eliminate dead code, specifically, an unused sysctl: "vm.idlezero_maxrun".

Approved by:	re (hrs)
This commit is contained in:
Alan Cox 2007-07-14 19:00:44 +00:00
parent a902b04074
commit bd06ab2f60
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=171445

View File

@ -59,10 +59,6 @@ TUNABLE_INT("vm.idlezero_enable", &idlezero_enable_default);
static int idlezero_enable = 0;
SYSCTL_INT(_vm, OID_AUTO, idlezero_enable, CTLFLAG_RW, &idlezero_enable, 0, "");
static int idlezero_maxrun = 16;
SYSCTL_INT(_vm, OID_AUTO, idlezero_maxrun, CTLFLAG_RW, &idlezero_maxrun, 0, "");
TUNABLE_INT("vm.idlezero_maxrun", &idlezero_maxrun);
/*
* Implement the pre-zeroed page mechanism.
*/