Skip to content

Commit

Permalink
[POWERPC] Remove obsolete freezer bits
Browse files Browse the repository at this point in the history
The powerpc signal code still had some obsolete freezer bits that
have long been removed from x86 (it's now done in generic code).

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
  • Loading branch information
Benjamin Herrenschmidt authored and Paul Mackerras committed Jun 14, 2007

Unverified

No user is associated with the committer email.
1 parent f478f54 commit 5f9f375
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions arch/powerpc/kernel/signal.c
Original file line number Diff line number Diff line change
@@ -9,7 +9,6 @@
* this archive for more details.
*/

#include <linux/freezer.h>
#include <linux/ptrace.h>
#include <linux/signal.h>
#include <asm/unistd.h>
@@ -101,24 +100,13 @@ int do_signal(sigset_t *oldset, struct pt_regs *regs)
int ret;
int is32 = is_32bit_task();

#ifdef CONFIG_PPC32
if (try_to_freeze()) {
signr = 0;
if (!signal_pending(current))
goto no_signal;
}
#endif

if (test_thread_flag(TIF_RESTORE_SIGMASK))
oldset = &current->saved_sigmask;
else if (!oldset)
oldset = &current->blocked;

signr = get_signal_to_deliver(&info, &ka, regs, NULL);

#ifdef CONFIG_PPC32
no_signal:
#endif
/* Is there any syscall restart business here ? */
check_syscall_restart(regs, &ka, signr > 0);

0 comments on commit 5f9f375

Please sign in to comment.