diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2018-06-27 14:39:54 -0500 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2020-02-28 11:34:47 -0600 |
commit | af1abab986b85fdeb3e98c037988cfa4bf9d4018 (patch) | |
tree | 4200342998a3e6f2052c6b67c6921ba8348c4f00 /arch | |
parent | a13ae6971599dd01a5fa8da9ee1bd5bb3efa01b3 (diff) | |
download | linux-stable-af1abab986b85fdeb3e98c037988cfa4bf9d4018.tar.gz linux-stable-af1abab986b85fdeb3e98c037988cfa4bf9d4018.tar.bz2 linux-stable-af1abab986b85fdeb3e98c037988cfa4bf9d4018.zip |
uml: Don't consult current to find the proc_mnt in mconsole_proc
Inspection of the control flow reveals that mconsole_proc is either
called from mconsole_stop called from mc_work_proc or from
mc_work_proc directly. The function mc_work_proc is dispatched to a
kernel thread with schedule_work.
All of the threads that run dispatched by schedule_work are in the
init pid namespace.
So make the code clearer and by using init_pid_ns instead of
task_active_pid_ns(current).
Cc: Jeff Dike <jdike@addtoit.com>
Cc: Richard Weinberger <richard@nod.at>
Cc: Anton Ivanov <anton.ivanov@cambridgegreys.com>
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/um/drivers/mconsole_kern.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/um/drivers/mconsole_kern.c b/arch/um/drivers/mconsole_kern.c index b80a1d616e4e..e8f5c81c2c6c 100644 --- a/arch/um/drivers/mconsole_kern.c +++ b/arch/um/drivers/mconsole_kern.c @@ -123,7 +123,7 @@ void mconsole_log(struct mc_request *req) void mconsole_proc(struct mc_request *req) { - struct vfsmount *mnt = task_active_pid_ns(current)->proc_mnt; + struct vfsmount *mnt = init_pid_ns.proc_mnt; char *buf; int len; struct file *file; |