sys_clone() needs asmlinkage_protect
Cc: stable@vger.kernel.org Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
@@ -1660,8 +1660,10 @@ SYSCALL_DEFINE5(clone, unsigned long, clone_flags, unsigned long, newsp,
|
|||||||
int, tls_val)
|
int, tls_val)
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
return do_fork(clone_flags, newsp, 0,
|
long ret = do_fork(clone_flags, newsp, 0, parent_tidptr, child_tidptr);
|
||||||
parent_tidptr, child_tidptr);
|
asmlinkage_protect(5, ret, clone_flags, newsp,
|
||||||
|
parent_tidptr, child_tidptr, tls_val);
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user