summary refs log tree commit diff
path: root/lib/bug.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2021-02-02 13:13:28 +0100
committerJessica Yu <jeyu@kernel.org>2021-02-08 12:24:26 +0100
commit922f2a7c822bf76dffb218331bd95b1eea3cf637 (patch)
treee6f789265451fdeb57cbe76ef72a13f25d4dfcfb /lib/bug.c
parent3e3552056ab42f883d7723eeb42fed712b66bacf (diff)
downloadlinux-922f2a7c822bf76dffb218331bd95b1eea3cf637.tar.gz
module: mark module_mutex static
Except for two lockdep asserts module_mutex is only used in module.c.
Remove the two asserts given that the functions they are in are not
exported and just called from the module code, and mark module_mutex
static.

Reviewed-by: Miroslav Benes <mbenes@suse.cz>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jessica Yu <jeyu@kernel.org>
Diffstat (limited to 'lib/bug.c')
-rw-r--r--lib/bug.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/bug.c b/lib/bug.c
index 7103440c0ee1..8f9d537bfb2a 100644
--- a/lib/bug.c
+++ b/lib/bug.c
@@ -91,8 +91,6 @@ void module_bug_finalize(const Elf_Ehdr *hdr, const Elf_Shdr *sechdrs,
 	char *secstrings;
 	unsigned int i;
 
-	lockdep_assert_held(&module_mutex);
-
 	mod->bug_table = NULL;
 	mod->num_bugs = 0;
 
@@ -118,7 +116,6 @@ void module_bug_finalize(const Elf_Ehdr *hdr, const Elf_Shdr *sechdrs,
 
 void module_bug_cleanup(struct module *mod)
 {
-	lockdep_assert_held(&module_mutex);
 	list_del_rcu(&mod->bug_list);
 }