diff options
author | Peter Zijlstra <peterz@infradead.org> | 2013-10-02 09:22:18 (GMT) |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2013-10-04 08:14:44 (GMT) |
commit | 2f2a2b60adf368bacd6acd2116c01e32caf936c4 (patch) | |
tree | ec7b7bac11365f1d0ae1a2d258429e265f27445d /include/linux/tty.h | |
parent | 75f93fed50c2abadbab6ef546b265f51ca975b27 (diff) | |
download | linux-fsl-qoriq-2f2a2b60adf368bacd6acd2116c01e32caf936c4.tar.xz |
sched/wait: Make the signal_pending() checks consistent
There's two patterns to check signals in the __wait_event*() macros:
if (!signal_pending(current)) {
schedule();
continue;
}
ret = -ERESTARTSYS;
break;
And the more natural:
if (signal_pending(current)) {
ret = -ERESTARTSYS;
break;
}
schedule();
Change them all into the latter form.
Reviewed-by: Oleg Nesterov <oleg@redhat.com>
Signed-off-by: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/20131002092527.956416254@infradead.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'include/linux/tty.h')
-rw-r--r-- | include/linux/tty.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/include/linux/tty.h b/include/linux/tty.h index 64f8646..0503729 100644 --- a/include/linux/tty.h +++ b/include/linux/tty.h @@ -686,14 +686,13 @@ do { \ prepare_to_wait(&wq, &__wait, TASK_INTERRUPTIBLE); \ if (condition) \ break; \ - if (!signal_pending(current)) { \ - tty_unlock(tty); \ - schedule(); \ - tty_lock(tty); \ - continue; \ + if (signal_pending(current)) { \ + ret = -ERESTARTSYS; \ + break; \ } \ - ret = -ERESTARTSYS; \ - break; \ + tty_unlock(tty); \ + schedule(); \ + tty_lock(tty); \ } \ finish_wait(&wq, &__wait); \ } while (0) |