Skip to content

Commit

Permalink
modules: mark find_symbol static
Browse files Browse the repository at this point in the history
find_symbol is only used in module.c.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jessica Yu <jeyu@kernel.org>
  • Loading branch information
Christoph Hellwig authored and Jessica Yu committed Aug 1, 2020
1 parent 7ef5264 commit 7731104
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 13 deletions.
11 changes: 0 additions & 11 deletions include/linux/module.h
Original file line number Diff line number Diff line change
Expand Up @@ -590,17 +590,6 @@ struct symsearch {
bool unused;
};

/*
* 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
*
Expand Down
3 changes: 1 addition & 2 deletions kernel/module.c
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ static bool find_exported_symbol_in_section(const struct symsearch *syms,

/* Find an exported 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,
Expand All @@ -608,7 +608,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
Expand Down

0 comments on commit 7731104

Please sign in to comment.