fork: Using clone_flags for legacy clone check
authorWang Jinchao <wangjinchao@xfusion.com>
Wed, 31 Jan 2024 02:54:41 +0000 (10:54 +0800)
committerChristian Brauner <brauner@kernel.org>
Fri, 2 Feb 2024 12:12:28 +0000 (13:12 +0100)
commitb639585e71e63008373d3a9fd060b87315fe7ea8
treece3fab4d9b0ad9c8330ed42f030f4112e46cd428
parent6613476e225e090cc9aad49be7fa504e290dd33d
fork: Using clone_flags for legacy clone check

In the current implementation of clone(), there is a line that
initializes `u64 clone_flags = args->flags` at the top.
This means that there is no longer a need to use args->flags
for the legacy clone check.

Signed-off-by: Wang Jinchao <wangjinchao@xfusion.com>
Link: https://lore.kernel.org/r/202401311054+0800-wangjinchao@xfusion.com
Signed-off-by: Christian Brauner <brauner@kernel.org>
kernel/fork.c