diff options
Diffstat (limited to 'kernel/sysctl.c')
| -rw-r--r-- | kernel/sysctl.c | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 083be6af29d7..ef77be575d87 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -33,6 +33,7 @@  #include <linux/security.h>  #include <linux/ctype.h>  #include <linux/kmemleak.h> +#include <linux/filter.h>  #include <linux/fs.h>  #include <linux/init.h>  #include <linux/kernel.h> @@ -122,6 +123,7 @@ static unsigned long long_max = LONG_MAX;  static int one_hundred = 100;  static int two_hundred = 200;  static int one_thousand = 1000; +static int three_thousand = 3000;  #ifdef CONFIG_PRINTK  static int ten_thousand = 10000;  #endif @@ -2959,7 +2961,7 @@ static struct ctl_table vm_table[] = {  		.mode		= 0644,  		.proc_handler	= watermark_scale_factor_sysctl_handler,  		.extra1		= SYSCTL_ONE, -		.extra2		= &one_thousand, +		.extra2		= &three_thousand,  	},  	{  		.procname	= "percpu_pagelist_high_fraction", |