Commit 0edc4ffd authored by Benjamin Herrenschmidt's avatar Benjamin Herrenschmidt Committed by Paul Mackerras

[POWERPC] Remove #ifdef around set_dabr in signal code

set_dabr() and thread.dabr exist on 32 bits as well nowadays (they
actually may do something even, depending on what CPU you have).

So this removes the ifdef.
Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent a3f61dc0
...@@ -146,7 +146,6 @@ int do_signal(sigset_t *oldset, struct pt_regs *regs) ...@@ -146,7 +146,6 @@ int do_signal(sigset_t *oldset, struct pt_regs *regs)
return 0; /* no signals delivered */ return 0; /* no signals delivered */
} }
#ifdef CONFIG_PPC64
/* /*
* Reenable the DABR before delivering the signal to * Reenable the DABR before delivering the signal to
* user space. The DABR will have been cleared if it * user space. The DABR will have been cleared if it
...@@ -154,7 +153,6 @@ int do_signal(sigset_t *oldset, struct pt_regs *regs) ...@@ -154,7 +153,6 @@ int do_signal(sigset_t *oldset, struct pt_regs *regs)
*/ */
if (current->thread.dabr) if (current->thread.dabr)
set_dabr(current->thread.dabr); set_dabr(current->thread.dabr);
#endif
if (is32) { if (is32) {
if (ka.sa.sa_flags & SA_SIGINFO) if (ka.sa.sa_flags & SA_SIGINFO)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment