Index: kernel/sysctl.c |
diff --git a/kernel/sysctl.c b/kernel/sysctl.c |
index b8bd058c5cd24b99cdbe899528e6794b81ce504a..478e6a6df24991075f91ae10cb3a959128c08633 100644 |
--- a/kernel/sysctl.c |
+++ b/kernel/sysctl.c |
@@ -1424,6 +1424,16 @@ static struct ctl_table vm_table[] = { |
.extra2 = &one, |
}, |
#endif |
+ { |
+ .ctl_name = CTL_UNNUMBERED, |
+ .procname = "min_filelist_kbytes", |
+ .data = &min_filelist_kbytes, |
+ .maxlen = sizeof(min_filelist_kbytes), |
+ .mode = 0644, |
+ .proc_handler = &proc_dointvec, |
+ .strategy = &sysctl_intvec, |
+ .extra1 = &zero, |
+ }, |
/* |
* NOTE: do not add new entries to this table unless you have read |