Skip to content

Commit

Permalink
modules: mark each_symbol_section static
Browse files Browse the repository at this point in the history
each_symbol_section is only used inside of 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 7731104 commit a54e049
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
9 changes: 0 additions & 9 deletions include/linux/module.h
Original file line number Diff line number Diff line change
Expand Up @@ -590,15 +590,6 @@ struct symsearch {
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
symnum out of range. */
int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
Expand Down
3 changes: 1 addition & 2 deletions kernel/module.c
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ static bool each_symbol_in_section(const struct symsearch *arr,
}

/* 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,
void *data),
void *data)
Expand Down Expand Up @@ -484,7 +484,6 @@ bool each_symbol_section(bool (*fn)(const struct symsearch *arr,
}
return false;
}
EXPORT_SYMBOL_GPL(each_symbol_section);

struct find_symbol_arg {
/* Input */
Expand Down

0 comments on commit a54e049

Please sign in to comment.