]> git.baikalelectronics.ru Git - kernel.git/commit
pid: Introduce helper task_is_in_init_pid_ns()
authorLeo Yan <leo.yan@linaro.org>
Wed, 26 Jan 2022 05:04:26 +0000 (13:04 +0800)
committerJakub Kicinski <kuba@kernel.org>
Thu, 27 Jan 2022 02:57:09 +0000 (18:57 -0800)
commit334d9fc76c263006a70ab54990f466e30112007c
treec45d21ee9942d90a12a7e361a092053c480c73b5
parenteebd62d0f77461e5a05d33be1df149cba59f184b
pid: Introduce helper task_is_in_init_pid_ns()

Currently the kernel uses open code in multiple places to check if a
task is in the root PID namespace with the kind of format:

  if (task_active_pid_ns(current) == &init_pid_ns)
      do_something();

This patch creates a new helper function, task_is_in_init_pid_ns(), it
returns true if a passed task is in the root PID namespace, otherwise
returns false.  So it will be used to replace open codes.

Suggested-by: Suzuki K Poulose <suzuki.poulose@arm.com>
Signed-off-by: Leo Yan <leo.yan@linaro.org>
Reviewed-by: Leon Romanovsky <leonro@nvidia.com>
Acked-by: Suzuki K Poulose <suzuki.poulose@arm.com>
Acked-by: Balbir Singh <bsingharora@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
include/linux/pid_namespace.h