diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-05-14 09:12:39 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2007-05-14 09:12:39 +0900 |
commit | c18fe9a0467afaec7de05ec76cd994ae7c866760 (patch) | |
tree | 4f469753ff8829c50bd26b6be32526824040c508 /arch/sh64/kernel/entry.S | |
parent | 599c26d32950c33bdd2a5ac6939bfe15ecf057e0 (diff) | |
download | op-kernel-dev-c18fe9a0467afaec7de05ec76cd994ae7c866760.zip op-kernel-dev-c18fe9a0467afaec7de05ec76cd994ae7c866760.tar.gz |
sh64: ppoll/pselect6() and restartable syscalls.
This patch was hanging around for some time while we were waiting
for the compiler situation to improve.. now that all is well again,
finally merge it.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh64/kernel/entry.S')
-rw-r--r-- | arch/sh64/kernel/entry.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh64/kernel/entry.S b/arch/sh64/kernel/entry.S index 40d4534..7013fcb 100644 --- a/arch/sh64/kernel/entry.S +++ b/arch/sh64/kernel/entry.S @@ -947,14 +947,14 @@ ret_with_reschedule: ! FIXME:!!! ! no handling of TIF_SYSCALL_TRACE yet!! - movi (1 << TIF_NEED_RESCHED), r8 + movi _TIF_NEED_RESCHED, r8 and r8, r7, r8 pta work_resched, tr0 bne r8, ZERO, tr0 pta restore_all, tr1 - movi (1 << TIF_SIGPENDING), r8 + movi (_TIF_SIGPENDING | _TIF_RESTORE_SIGMASK), r8 and r8, r7, r8 pta work_notifysig, tr0 bne r8, ZERO, tr0 |