mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 14:42:37 +02:00
selftests/cgroup: Fix build on older distros
commit c2e46f6b3e upstream.
On older distros struct clone_args does not have a cgroup member,
leading to build errors:
cgroup_util.c: In function 'clone_into_cgroup':
cgroup_util.c:343:4: error: 'struct clone_args' has no member named 'cgroup'
cgroup_util.c:346:33: error: invalid application of 'sizeof' to incomplete
type 'struct clone_args'
But the selftests already have a locally defined version of the
structure which is up to date, called __clone_args.
So use __clone_args which fixes the error.
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Signed-off-by: Sachin Sant <sachinp@linux.vnet.ibm.com>>
Acked-by: Christian Brauner <christian.brauner@ubuntu.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Signed-off-by: Ovidiu Panait <ovidiu.panait@windriver.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4665722d36
commit
e74da71e66
|
|
@ -337,13 +337,13 @@ pid_t clone_into_cgroup(int cgroup_fd)
|
||||||
#ifdef CLONE_ARGS_SIZE_VER2
|
#ifdef CLONE_ARGS_SIZE_VER2
|
||||||
pid_t pid;
|
pid_t pid;
|
||||||
|
|
||||||
struct clone_args args = {
|
struct __clone_args args = {
|
||||||
.flags = CLONE_INTO_CGROUP,
|
.flags = CLONE_INTO_CGROUP,
|
||||||
.exit_signal = SIGCHLD,
|
.exit_signal = SIGCHLD,
|
||||||
.cgroup = cgroup_fd,
|
.cgroup = cgroup_fd,
|
||||||
};
|
};
|
||||||
|
|
||||||
pid = sys_clone3(&args, sizeof(struct clone_args));
|
pid = sys_clone3(&args, sizeof(struct __clone_args));
|
||||||
/*
|
/*
|
||||||
* Verify that this is a genuine test failure:
|
* Verify that this is a genuine test failure:
|
||||||
* ENOSYS -> clone3() not available
|
* ENOSYS -> clone3() not available
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user