[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20210525141524.3995-2-dong.menglong@zte.com.cn>
Date: Tue, 25 May 2021 22:15:22 +0800
From: menglong8.dong@...il.com
To: mcgrof@...nel.org, josh@...htriplett.org
Cc: viro@...iv.linux.org.uk, keescook@...omium.org,
samitolvanen@...gle.com, ojeda@...nel.org, johan@...nel.org,
bhelgaas@...gle.com, masahiroy@...nel.org,
dong.menglong@....com.cn, joe@...ches.com, axboe@...nel.dk,
hare@...e.de, jack@...e.cz, tj@...nel.org,
gregkh@...uxfoundation.org, song@...nel.org, neilb@...e.de,
akpm@...ux-foundation.org, f.fainelli@...il.com, arnd@...db.de,
linux@...musvillemoes.dk, wangkefeng.wang@...wei.com,
brho@...gle.com, mhiramat@...nel.org, rostedt@...dmis.org,
vbabka@...e.cz, glider@...gle.com, pmladek@...e.com,
chris@...isdown.name, ebiederm@...ssion.com, jojing64@...il.com,
terrelln@...com, geert@...ux-m68k.org, mingo@...nel.org,
linux-fsdevel@...r.kernel.org, linux-kernel@...r.kernel.org,
jeyu@...nel.org
Subject: [PATCH v2 1/3] init/main.c: introduce function ramdisk_exec_exist()
From: Menglong Dong <dong.menglong@....com.cn>
Introduce the function ramdisk_exec_exist, which is used to check
the exist of 'ramdisk_execute_command'.
Add the flag 'LOOKUP_DOWN' to 'init_eaccess' to make it follow the
mount on '/' while path lookup.
Signed-off-by: Menglong Dong <dong.menglong@....com.cn>
---
fs/init.c | 2 +-
init/main.c | 7 ++++++-
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/fs/init.c b/fs/init.c
index 5c36adaa9b44..a1839fdcf467 100644
--- a/fs/init.c
+++ b/fs/init.c
@@ -115,7 +115,7 @@ int __init init_eaccess(const char *filename)
struct path path;
int error;
- error = kern_path(filename, LOOKUP_FOLLOW, &path);
+ error = kern_path(filename, LOOKUP_FOLLOW | LOOKUP_DOWN, &path);
if (error)
return error;
error = path_permission(&path, MAY_ACCESS);
diff --git a/init/main.c b/init/main.c
index eb01e121d2f1..1153571ca977 100644
--- a/init/main.c
+++ b/init/main.c
@@ -1522,6 +1522,11 @@ void __init console_on_rootfs(void)
fput(file);
}
+bool __init ramdisk_exec_exist(void)
+{
+ return init_eaccess(ramdisk_execute_command) == 0;
+}
+
static noinline void __init kernel_init_freeable(void)
{
/*
@@ -1568,7 +1573,7 @@ static noinline void __init kernel_init_freeable(void)
* check if there is an early userspace init. If yes, let it do all
* the work
*/
- if (init_eaccess(ramdisk_execute_command) != 0) {
+ if (!ramdisk_exec_exist()) {
ramdisk_execute_command = NULL;
prepare_namespace();
}
--
2.32.0.rc0
Powered by blists - more mailing lists