fs/proc/kcore.c: make kcore_modules static
Fix sparse warning: fs/proc/kcore.c:591:19: warning: symbol 'kcore_modules' was not declared. Should it be static? Link: http://lkml.kernel.org/r/20190320135417.13272-1-yuehaibing@huawei.com Signed-off-by: YueHaibing <yuehaibing@huawei.com> Acked-by: Mukesh Ojha <mojha@codeaurora.org> Cc: Alexey Dobriyan <adobriyan@gmail.com> Cc: Omar Sandoval <osandov@fb.com> Cc: James Morse <james.morse@arm.com> Cc: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
b736523f07
commit
eebf364806
|
@ -615,7 +615,7 @@ static void __init proc_kcore_text_init(void)
|
|||
/*
|
||||
* MODULES_VADDR has no intersection with VMALLOC_ADDR.
|
||||
*/
|
||||
struct kcore_list kcore_modules;
|
||||
static struct kcore_list kcore_modules;
|
||||
static void __init add_modules_range(void)
|
||||
{
|
||||
if (MODULES_VADDR != VMALLOC_START && MODULES_END != VMALLOC_END) {
|
||||
|
|
Loading…
Reference in New Issue