Loading include/linux/module.h +0 −11 Original line number Diff line number Diff line Loading @@ -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 * Loading kernel/module.c +1 −2 Original line number Diff line number Diff line Loading @@ -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, Loading @@ -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 Loading Loading
include/linux/module.h +0 −11 Original line number Diff line number Diff line Loading @@ -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 * Loading
kernel/module.c +1 −2 Original line number Diff line number Diff line Loading @@ -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, Loading @@ -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 Loading