mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 16:20:55 +07:00
x86: ia32_setup_rt_frame(): consolidate uaccess areas
__copy_siginfo_to_user32() call reordered a bit. The rest folds nicely. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
e239074105
commit
57d563c829
@ -302,10 +302,9 @@ int ia32_setup_rt_frame(int sig, struct ksignal *ksig,
|
||||
{
|
||||
struct rt_sigframe_ia32 __user *frame;
|
||||
void __user *restorer;
|
||||
int err = 0;
|
||||
void __user *fp = NULL;
|
||||
|
||||
/* __copy_to_user optimizes that into a single 8 byte store */
|
||||
/* unsafe_put_user optimizes that into a single 8 byte store */
|
||||
static const struct {
|
||||
u8 movl;
|
||||
u32 val;
|
||||
@ -347,18 +346,12 @@ int ia32_setup_rt_frame(int sig, struct ksignal *ksig,
|
||||
* versions need it.
|
||||
*/
|
||||
unsafe_put_user(*((u64 *)&code), (u64 __user *)frame->retcode, Efault);
|
||||
unsafe_put_sigcontext32(&frame->uc.uc_mcontext, fp, regs, set, Efault);
|
||||
unsafe_put_user(*(__u64 *)set, (__u64 *)&frame->uc.uc_sigmask, Efault);
|
||||
user_access_end();
|
||||
|
||||
if (__copy_siginfo_to_user32(&frame->info, &ksig->info, false))
|
||||
return -EFAULT;
|
||||
if (!user_access_begin(&frame->uc.uc_mcontext, sizeof(struct sigcontext_32)))
|
||||
return -EFAULT;
|
||||
unsafe_put_sigcontext32(&frame->uc.uc_mcontext, fp, regs, set, Efault);
|
||||
user_access_end();
|
||||
err |= __put_user(*(__u64 *)set, (__u64 __user *)&frame->uc.uc_sigmask);
|
||||
|
||||
if (err)
|
||||
return -EFAULT;
|
||||
|
||||
/* Set up registers for signal handler */
|
||||
regs->sp = (unsigned long) frame;
|
||||
|
Loading…
Reference in New Issue
Block a user