diff options
author | Aaron Tomlin <atomlin@redhat.com> | 2022-07-14 16:39:31 +0100 |
---|---|---|
committer | Luis Chamberlain <mcgrof@kernel.org> | 2022-07-14 17:40:23 -0700 |
commit | 17dd25c29cda98c370f8d5a4ae3daee33fac1669 (patch) | |
tree | 3afab20c095cdd90e31fdbdc3699693b944e2d04 /kernel/module/internal.h | |
parent | 73b4fc92f97d775da26d86d2732497be6c610ec6 (diff) |
module: Modify module_flags() to accept show_state argument
No functional change.
With this patch a given module's state information (i.e. 'mod->state')
can be omitted from the specified buffer. Please note that this is in
preparation to include the last unloaded module's taint flag(s),
if available.
Signed-off-by: Aaron Tomlin <atomlin@redhat.com>
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
Diffstat (limited to 'kernel/module/internal.h')
-rw-r--r-- | kernel/module/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/module/internal.h b/kernel/module/internal.h index ec104c2950c3..680d980a4fb2 100644 --- a/kernel/module/internal.h +++ b/kernel/module/internal.h @@ -103,7 +103,7 @@ struct module *find_module_all(const char *name, size_t len, bool even_unformed) int cmp_name(const void *name, const void *sym); long module_get_offset(struct module *mod, unsigned int *size, Elf_Shdr *sechdr, unsigned int section); -char *module_flags(struct module *mod, char *buf); +char *module_flags(struct module *mod, char *buf, bool show_state); size_t module_flags_taint(unsigned long taints, char *buf); static inline void module_assert_mutex_or_preempt(void) |