1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-25 11:37:56 +00:00

Remove a stale tunable introduced in r215703.

This commit is contained in:
Jung-uk Kim 2010-11-23 17:28:23 +00:00
parent 42ca4a29de
commit d2d0fda841
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=215754
2 changed files with 2 additions and 4 deletions

View File

@ -183,8 +183,7 @@ pt_entry_t pg_nx;
SYSCTL_NODE(_vm, OID_AUTO, pmap, CTLFLAG_RD, 0, "VM/pmap parameters");
static int pat_works = 1;
TUNABLE_INT("vm.pmap.pat_works", &pat_works);
SYSCTL_INT(_vm_pmap, OID_AUTO, pat_works, CTLFLAG_RDTUN, &pat_works, 1,
SYSCTL_INT(_vm_pmap, OID_AUTO, pat_works, CTLFLAG_RD, &pat_works, 1,
"Is page attribute table fully functional?");
static int pg_ps_enabled = 1;

View File

@ -220,8 +220,7 @@ static uma_zone_t pdptzone;
SYSCTL_NODE(_vm, OID_AUTO, pmap, CTLFLAG_RD, 0, "VM/pmap parameters");
static int pat_works = 1;
TUNABLE_INT("vm.pmap.pat_works", &pat_works);
SYSCTL_INT(_vm_pmap, OID_AUTO, pat_works, CTLFLAG_RDTUN, &pat_works, 1,
SYSCTL_INT(_vm_pmap, OID_AUTO, pat_works, CTLFLAG_RD, &pat_works, 1,
"Is page attribute table fully functional?");
static int pg_ps_enabled = 1;