mirror of https://gitee.com/openkylin/linux.git
um: switch UPT_SET_RETURN_VALUE and regs_return_value to pt_regs
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Richard Weinberger <richard@nod.at>
This commit is contained in:
parent
2cad4c1276
commit
a3170d2ec2
|
@ -193,7 +193,7 @@ int copy_thread(unsigned long clone_flags, unsigned long sp,
|
||||||
if (current->thread.forking) {
|
if (current->thread.forking) {
|
||||||
memcpy(&p->thread.regs.regs, ®s->regs,
|
memcpy(&p->thread.regs.regs, ®s->regs,
|
||||||
sizeof(p->thread.regs.regs));
|
sizeof(p->thread.regs.regs));
|
||||||
UPT_SET_SYSCALL_RETURN(&p->thread.regs.regs, 0);
|
PT_REGS_SET_SYSCALL_RETURN(&p->thread.regs, 0);
|
||||||
if (sp != 0)
|
if (sp != 0)
|
||||||
REGS_SP(p->thread.regs.regs.gp) = sp;
|
REGS_SP(p->thread.regs.regs.gp) = sp;
|
||||||
|
|
||||||
|
|
|
@ -34,7 +34,7 @@ void handle_syscall(struct uml_pt_regs *r)
|
||||||
result = -ENOSYS;
|
result = -ENOSYS;
|
||||||
else result = EXECUTE_SYSCALL(syscall, regs);
|
else result = EXECUTE_SYSCALL(syscall, regs);
|
||||||
|
|
||||||
UPT_SET_SYSCALL_RETURN(r, result);
|
PT_REGS_SET_SYSCALL_RETURN(regs, result);
|
||||||
|
|
||||||
syscall_trace(r, 1);
|
syscall_trace(r, 1);
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,10 +30,10 @@
|
||||||
#define profile_pc(regs) PT_REGS_IP(regs)
|
#define profile_pc(regs) PT_REGS_IP(regs)
|
||||||
|
|
||||||
#define UPT_RESTART_SYSCALL(r) (UPT_IP(r) -= 2)
|
#define UPT_RESTART_SYSCALL(r) (UPT_IP(r) -= 2)
|
||||||
#define UPT_SET_SYSCALL_RETURN(r, res) (UPT_AX(r) = (res))
|
#define PT_REGS_SET_SYSCALL_RETURN(r, res) (PT_REGS_AX(r) = (res))
|
||||||
|
|
||||||
static inline long regs_return_value(struct uml_pt_regs *regs)
|
static inline long regs_return_value(struct pt_regs *regs)
|
||||||
{
|
{
|
||||||
return UPT_AX(regs);
|
return PT_REGS_AX(regs);
|
||||||
}
|
}
|
||||||
#endif /* __UM_X86_PTRACE_H */
|
#endif /* __UM_X86_PTRACE_H */
|
||||||
|
|
Loading…
Reference in New Issue