diff options
| author | Christoph Hellwig <hch@lst.de> | 2020-07-30 08:10:21 +0200 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-05-22 10:59:23 +0200 |
| commit | c3da81cefbb5bc729db273ce90a994477413fc9d (patch) | |
| tree | 908c9cefde8cdab887b6e897027a081fd66c8839 | |
| parent | 8745aa4e018e4159f8c49d9689251f51fd0a15e0 (diff) | |
modules: mark find_symbol static
commit 773110470e2fa3839523384ae014f8a723c4d178 upstream.
find_symbol is only used in module.c.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jessica Yu <jeyu@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | include/linux/module.h | 11 | ||||
| -rw-r--r-- | kernel/module.c | 3 |
2 files changed, 1 insertions, 13 deletions
diff --git a/include/linux/module.h b/include/linux/module.h index 116fe0da3b6a..f52bd3ff1e01 100644 --- a/include/linux/module.h +++ b/include/linux/module.h @@ -538,17 +538,6 @@ struct symsearch { }; /* - * Search for an exported symbol by name. - * - * Must be called with module_mutex held or preemption disabled. - */ -const struct kernel_symbol *find_symbol(const char *name, - struct module **owner, - const s32 **crc, - bool gplok, - bool warn); - -/* * Walk the exported symbol table * * Must be called with module_mutex held or preemption disabled. diff --git a/kernel/module.c b/kernel/module.c index d1b1d692967e..8a3705150008 100644 --- a/kernel/module.c +++ b/kernel/module.c @@ -568,7 +568,7 @@ static bool find_symbol_in_section(const struct symsearch *syms, /* Find a symbol and return it, along with, (optional) crc and * (optional) module which owns it. Needs preempt disabled or module_mutex. */ -const struct kernel_symbol *find_symbol(const char *name, +static const struct kernel_symbol *find_symbol(const char *name, struct module **owner, const s32 **crc, bool gplok, @@ -591,7 +591,6 @@ const struct kernel_symbol *find_symbol(const char *name, pr_debug("Failed to find symbol %s\n", name); return NULL; } -EXPORT_SYMBOL_GPL(find_symbol); /* * Search for module by name: must hold module_mutex (or preempt disabled |
