diff options
author | Luis R. Rodriguez <mcgrof@kernel.org> | 2017-06-28 18:32:31 -0700 |
---|---|---|
committer | Jessica Yu <jeyu@kernel.org> | 2017-06-29 14:19:17 +0200 |
commit | 96b5b19459b3c2aed2872bac42cbe19edfae710f (patch) | |
tree | 388beca54742e2427327435c0fc32ad017e5a44e /kernel/module.c | |
parent | 165d1cc0074b2f938586274776d029b9bce914c4 (diff) | |
download | linux-next-96b5b19459b3c2aed2872bac42cbe19edfae710f.tar.gz |
module: make the modinfo name const
This can be accomplished by making blacklisted() also accept const.
Signed-off-by: Luis R. Rodriguez <mcgrof@kernel.org>
Acked-by: Kees Cook <keescook@chromium.org>
[jeyu: fix typo]
Signed-off-by: Jessica Yu <jeyu@kernel.org>
Diffstat (limited to 'kernel/module.c')
-rw-r--r-- | kernel/module.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/module.c b/kernel/module.c index afc6ede7bcdf..d07287707557 100644 --- a/kernel/module.c +++ b/kernel/module.c @@ -302,7 +302,7 @@ int unregister_module_notifier(struct notifier_block *nb) EXPORT_SYMBOL(unregister_module_notifier); struct load_info { - char *name; + const char *name; Elf_Ehdr *hdr; unsigned long len; Elf_Shdr *sechdrs; @@ -3265,7 +3265,7 @@ int __weak module_frob_arch_sections(Elf_Ehdr *hdr, /* module_blacklist is a comma-separated list of module names */ static char *module_blacklist; -static bool blacklisted(char *module_name) +static bool blacklisted(const char *module_name) { const char *p; size_t len; |