[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20251128191650.18821-1-sameekshasankpal@gmail.com>
Date: Sat, 29 Nov 2025 00:46:50 +0530
From: Sameeksha Sankpal <sameekshasankpal@...il.com>
To: akpm@...ux-foundation.org
Cc: rppt@...nel.org,
tglx@...utronix.de,
chenhuacai@...nel.org,
mhiramat@...nel.org,
mingo@...nel.org,
francesco@...la.it,
link@...o.com,
brauner@...nel.org,
lillian@...r-ark.net,
guoweikang.kernel@...il.com,
alexander.shishkin@...ux.intel.com,
linux-kernel@...r.kernel.org,
Sameeksha Sankpal <sameekshasankpal@...il.com>
Subject: [PATCH] init: mark envp_init as static
Sparse reports a warning that 'envp_init' has no prior
declaration:
warning: symbol 'envp_init' was not declared. Should it be static?
The variable is only used within init/main.c and does not
need external linkage. Mark it as static to limit its scope
and fix the sparse warning.
Signed-off-by: Sameeksha Sankpal <sameekshasankpal@...il.com>
---
init/main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/init/main.c b/init/main.c
index 07a3116811c5..792ab00e62e6 100644
--- a/init/main.c
+++ b/init/main.c
@@ -191,7 +191,7 @@ static int __init set_reset_devices(char *str)
__setup("reset_devices", set_reset_devices);
static const char *argv_init[MAX_INIT_ARGS+2] = { "init", NULL, };
-const char *envp_init[MAX_INIT_ENVS+2] = { "HOME=/", "TERM=linux", NULL, };
+static const char *envp_init[MAX_INIT_ENVS+2] = { "HOME=/", "TERM=linux", NULL, };
static const char *panic_later, *panic_param;
static bool __init obsolete_checksetup(char *line)
--
2.43.0
Powered by blists - more mailing lists