diff options
-rw-r--r-- | kernel/module.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/kernel/module.c b/kernel/module.c index 93342d992f34..3c5509642847 100644 --- a/kernel/module.c +++ b/kernel/module.c | |||
@@ -2878,8 +2878,7 @@ static struct module *load_module(void __user *umod, | |||
2878 | } | 2878 | } |
2879 | 2879 | ||
2880 | /* This has to be done once we're sure module name is unique. */ | 2880 | /* This has to be done once we're sure module name is unique. */ |
2881 | if (!mod->taints || mod->taints == (1U<<TAINT_CRAP)) | 2881 | dynamic_debug_setup(info.debug, info.num_debug); |
2882 | dynamic_debug_setup(info.debug, info.num_debug); | ||
2883 | 2882 | ||
2884 | /* Find duplicate symbols */ | 2883 | /* Find duplicate symbols */ |
2885 | err = verify_export_symbols(mod); | 2884 | err = verify_export_symbols(mod); |
@@ -2915,8 +2914,7 @@ static struct module *load_module(void __user *umod, | |||
2915 | module_bug_cleanup(mod); | 2914 | module_bug_cleanup(mod); |
2916 | 2915 | ||
2917 | ddebug: | 2916 | ddebug: |
2918 | if (!mod->taints || mod->taints == (1U<<TAINT_CRAP)) | 2917 | dynamic_debug_remove(info.debug); |
2919 | dynamic_debug_remove(info.debug); | ||
2920 | unlock: | 2918 | unlock: |
2921 | mutex_unlock(&module_mutex); | 2919 | mutex_unlock(&module_mutex); |
2922 | synchronize_sched(); | 2920 | synchronize_sched(); |