Commit 42c66d16 authored by Leo Yan's avatar Leo Yan Committed by Jakub Kicinski

connector/cn_proc: Use task_is_in_init_pid_ns()

This patch replaces open code with task_is_in_init_pid_ns() to check if
a task is in root PID namespace.
Signed-off-by: default avatarLeo Yan <leo.yan@linaro.org>
Acked-by: default avatarBalbir Singh <bsingharora@gmail.com>
Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent d7e4f854
...@@ -358,7 +358,7 @@ static void cn_proc_mcast_ctl(struct cn_msg *msg, ...@@ -358,7 +358,7 @@ static void cn_proc_mcast_ctl(struct cn_msg *msg,
* other namespaces. * other namespaces.
*/ */
if ((current_user_ns() != &init_user_ns) || if ((current_user_ns() != &init_user_ns) ||
(task_active_pid_ns(current) != &init_pid_ns)) !task_is_in_init_pid_ns(current))
return; return;
/* Can only change if privileged. */ /* Can only change if privileged. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment