diff options
-rw-r--r-- | kernel/module.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/kernel/module.c b/kernel/module.c index 2461370813b3..d7a92682fba3 100644 --- a/kernel/module.c +++ b/kernel/module.c | |||
@@ -1225,6 +1225,12 @@ static const struct kernel_symbol *resolve_symbol(struct module *mod, | |||
1225 | const unsigned long *crc; | 1225 | const unsigned long *crc; |
1226 | int err; | 1226 | int err; |
1227 | 1227 | ||
1228 | /* | ||
1229 | * The module_mutex should not be a heavily contended lock; | ||
1230 | * if we get the occasional sleep here, we'll go an extra iteration | ||
1231 | * in the wait_event_interruptible(), which is harmless. | ||
1232 | */ | ||
1233 | sched_annotate_sleep(); | ||
1228 | mutex_lock(&module_mutex); | 1234 | mutex_lock(&module_mutex); |
1229 | sym = find_symbol(name, &owner, &crc, | 1235 | sym = find_symbol(name, &owner, &crc, |
1230 | !(mod->taints & (1 << TAINT_PROPRIETARY_MODULE)), true); | 1236 | !(mod->taints & (1 << TAINT_PROPRIETARY_MODULE)), true); |