diff options
Diffstat (limited to 'kernel/module.c')
-rw-r--r-- | kernel/module.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/kernel/module.c b/kernel/module.c index 6f69463f0066..03214bd288e9 100644 --- a/kernel/module.c +++ b/kernel/module.c | |||
@@ -3304,6 +3304,11 @@ static int load_module(struct load_info *info, const char __user *uargs, | |||
3304 | mutex_lock(&module_mutex); | 3304 | mutex_lock(&module_mutex); |
3305 | module_bug_cleanup(mod); | 3305 | module_bug_cleanup(mod); |
3306 | mutex_unlock(&module_mutex); | 3306 | mutex_unlock(&module_mutex); |
3307 | |||
3308 | /* we can't deallocate the module until we clear memory protection */ | ||
3309 | unset_module_init_ro_nx(mod); | ||
3310 | unset_module_core_ro_nx(mod); | ||
3311 | |||
3307 | ddebug_cleanup: | 3312 | ddebug_cleanup: |
3308 | dynamic_debug_remove(info->debug); | 3313 | dynamic_debug_remove(info->debug); |
3309 | synchronize_sched(); | 3314 | synchronize_sched(); |