diff options
Diffstat (limited to 'kernel/sysctl.c')
| -rw-r--r-- | kernel/sysctl.c | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 3dd0c46fa3b..4bffd62c2f1 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -56,6 +56,7 @@  #include <linux/kprobes.h>  #include <linux/pipe_fs_i.h>  #include <linux/oom.h> +#include <linux/kmod.h>  #include <asm/uaccess.h>  #include <asm/processor.h> @@ -616,6 +617,11 @@ static struct ctl_table kern_table[] = {  		.child		= random_table,  	},  	{ +		.procname	= "usermodehelper", +		.mode		= 0555, +		.child		= usermodehelper_table, +	}, +	{  		.procname	= "overflowuid",  		.data		= &overflowuid,  		.maxlen		= sizeof(int),  |