UPSTREAM: modules: mark each_symbol_section static
each_symbol_section is only used inside of module.c.
Bug: 157965270
Bug: 171277690
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jessica Yu <jeyu@kernel.org>
(cherry picked from commit a54e04914c)
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Change-Id: I5debe30f150847281874d9b2c47952f9036d37d2
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
2951ba186e
commit
6cd6da665d
@@ -581,15 +581,6 @@ struct symsearch {
|
|||||||
bool unused;
|
bool unused;
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
* Walk the exported symbol table
|
|
||||||
*
|
|
||||||
* Must be called with module_mutex held or preemption disabled.
|
|
||||||
*/
|
|
||||||
bool each_symbol_section(bool (*fn)(const struct symsearch *arr,
|
|
||||||
struct module *owner,
|
|
||||||
void *data), void *data);
|
|
||||||
|
|
||||||
/* Returns 0 and fills in value, defined and namebuf, or -ERANGE if
|
/* Returns 0 and fills in value, defined and namebuf, or -ERANGE if
|
||||||
symnum out of range. */
|
symnum out of range. */
|
||||||
int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
|
int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
|
||||||
|
|||||||
@@ -419,7 +419,7 @@ static bool each_symbol_in_section(const struct symsearch *arr,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Returns true as soon as fn returns true, otherwise false. */
|
/* Returns true as soon as fn returns true, otherwise false. */
|
||||||
bool each_symbol_section(bool (*fn)(const struct symsearch *arr,
|
static bool each_symbol_section(bool (*fn)(const struct symsearch *arr,
|
||||||
struct module *owner,
|
struct module *owner,
|
||||||
void *data),
|
void *data),
|
||||||
void *data)
|
void *data)
|
||||||
@@ -481,7 +481,6 @@ bool each_symbol_section(bool (*fn)(const struct symsearch *arr,
|
|||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(each_symbol_section);
|
|
||||||
|
|
||||||
struct find_symbol_arg {
|
struct find_symbol_arg {
|
||||||
/* Input */
|
/* Input */
|
||||||
|
|||||||
Reference in New Issue
Block a user