aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/module.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/module.c')
-rw-r--r--kernel/module.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/module.c b/kernel/module.c
index 7e31da9750c0..6f6651a54590 100644
--- a/kernel/module.c
+++ b/kernel/module.c
@@ -2923,7 +2923,8 @@ static struct module *load_module(void __user *umod,
2923 mutex_unlock(&module_mutex); 2923 mutex_unlock(&module_mutex);
2924 2924
2925 /* Module is ready to execute: parsing args may do that. */ 2925 /* Module is ready to execute: parsing args may do that. */
2926 err = parse_args(mod->name, mod->args, mod->kp, mod->num_kp, NULL); 2926 err = parse_args(mod->name, mod->args, mod->kp, mod->num_kp,
2927 -32768, 32767, NULL);
2927 if (err < 0) 2928 if (err < 0)
2928 goto unlink; 2929 goto unlink;
2929 2930