aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/sysctl.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/sysctl.c')
-rw-r--r--kernel/sysctl.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c
index 8c0eabd41886..42b7fc2860c1 100644
--- a/kernel/sysctl.c
+++ b/kernel/sysctl.c
@@ -1335,6 +1335,15 @@ static struct ctl_table vm_table[] = {
1335 .extra1 = &min_extfrag_threshold, 1335 .extra1 = &min_extfrag_threshold,
1336 .extra2 = &max_extfrag_threshold, 1336 .extra2 = &max_extfrag_threshold,
1337 }, 1337 },
1338 {
1339 .procname = "compact_unevictable_allowed",
1340 .data = &sysctl_compact_unevictable_allowed,
1341 .maxlen = sizeof(int),
1342 .mode = 0644,
1343 .proc_handler = proc_dointvec,
1344 .extra1 = &zero,
1345 .extra2 = &one,
1346 },
1338 1347
1339#endif /* CONFIG_COMPACTION */ 1348#endif /* CONFIG_COMPACTION */
1340 { 1349 {