2019-03-20 13:57:09

by Yue Haibing

[permalink] [raw]
Subject: [PATCH -next] proc/kcore: Make kcore_modules static

From: YueHaibing <[email protected]>

Fix sparse warning:

fs/proc/kcore.c:591:19: warning:
symbol 'kcore_modules' was not declared. Should it be static?

Signed-off-by: YueHaibing <[email protected]>
---
fs/proc/kcore.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/proc/kcore.c b/fs/proc/kcore.c
index bbcc185..378f453 100644
--- a/fs/proc/kcore.c
+++ b/fs/proc/kcore.c
@@ -588,7 +588,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) {
--
2.7.0




2019-03-20 19:58:11

by Mukesh Ojha

[permalink] [raw]
Subject: Re: [PATCH -next] proc/kcore: Make kcore_modules static


On 3/20/2019 7:24 PM, Yue Haibing wrote:
> From: YueHaibing <[email protected]>
>
> Fix sparse warning:
>
> fs/proc/kcore.c:591:19: warning:
> symbol 'kcore_modules' was not declared. Should it be static?
>
> Signed-off-by: YueHaibing <[email protected]>
> ---
> fs/proc/kcore.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/fs/proc/kcore.c b/fs/proc/kcore.c
> index bbcc185..378f453 100644
> --- a/fs/proc/kcore.c
> +++ b/fs/proc/kcore.c
> @@ -588,7 +588,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) {


Acked-by: Mukesh Ojha <[email protected]>