mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-21 06:01:23 +00:00
signal: introduce do_sigtimedwait() to factor out compat/native code
Factor out the common code in sys_rt_sigtimedwait/compat_sys_rt_sigtimedwait to the new helper, do_sigtimedwait(). Add the comment to document the extra tick we add to timespec_to_jiffies(ts), thanks to Linus who explained this to me. Perhaps it would be better to move compat_sys_rt_sigtimedwait() into signal.c under CONFIG_COMPAT, then we can make do_sigtimedwait() static. Signed-off-by: Oleg Nesterov <oleg@redhat.com> Acked-by: Tejun Heo <tj@kernel.org> Reviewed-by: Matt Fleming <matt.fleming@linux.intel.com>
This commit is contained in:
parent
fe0faa005d
commit
943df1485a
3 changed files with 73 additions and 78 deletions
|
@ -890,10 +890,9 @@ compat_sys_rt_sigtimedwait (compat_sigset_t __user *uthese,
|
|||
{
|
||||
compat_sigset_t s32;
|
||||
sigset_t s;
|
||||
int sig;
|
||||
struct timespec t;
|
||||
siginfo_t info;
|
||||
long ret, timeout;
|
||||
long ret;
|
||||
|
||||
if (sigsetsize != sizeof(sigset_t))
|
||||
return -EINVAL;
|
||||
|
@ -901,45 +900,19 @@ compat_sys_rt_sigtimedwait (compat_sigset_t __user *uthese,
|
|||
if (copy_from_user(&s32, uthese, sizeof(compat_sigset_t)))
|
||||
return -EFAULT;
|
||||
sigset_from_compat(&s, &s32);
|
||||
sigdelsetmask(&s,sigmask(SIGKILL)|sigmask(SIGSTOP));
|
||||
signotset(&s);
|
||||
|
||||
timeout = MAX_SCHEDULE_TIMEOUT;
|
||||
if (uts) {
|
||||
if (get_compat_timespec (&t, uts))
|
||||
if (get_compat_timespec(&t, uts))
|
||||
return -EFAULT;
|
||||
if (!timespec_valid(&t))
|
||||
return -EINVAL;
|
||||
timeout = timespec_to_jiffies(&t) + (t.tv_sec || t.tv_nsec);
|
||||
}
|
||||
|
||||
spin_lock_irq(¤t->sighand->siglock);
|
||||
sig = dequeue_signal(current, &s, &info);
|
||||
if (!sig && timeout) {
|
||||
current->real_blocked = current->blocked;
|
||||
sigandsets(¤t->blocked, ¤t->blocked, &s);
|
||||
recalc_sigpending();
|
||||
spin_unlock_irq(¤t->sighand->siglock);
|
||||
ret = do_sigtimedwait(&s, &info, uts ? &t : NULL);
|
||||
|
||||
timeout = schedule_timeout_interruptible(timeout);
|
||||
|
||||
spin_lock_irq(¤t->sighand->siglock);
|
||||
sig = dequeue_signal(current, &s, &info);
|
||||
current->blocked = current->real_blocked;
|
||||
siginitset(¤t->real_blocked, 0);
|
||||
recalc_sigpending();
|
||||
if (ret > 0 && uinfo) {
|
||||
if (copy_siginfo_to_user32(uinfo, &info))
|
||||
ret = -EFAULT;
|
||||
}
|
||||
spin_unlock_irq(¤t->sighand->siglock);
|
||||
|
||||
if (sig) {
|
||||
ret = sig;
|
||||
if (uinfo) {
|
||||
if (copy_siginfo_to_user32(uinfo, &info))
|
||||
ret = -EFAULT;
|
||||
}
|
||||
} else {
|
||||
ret = timeout?-EINTR:-EAGAIN;
|
||||
}
|
||||
return ret;
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue