[PATCH] finish_stop: don't check stop_count < 0

Remove an obscure 'stop_count < 0' check in finish_stop(). The previous patch
made this case impossible.

Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>
Cc: john stultz <johnstul@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Oleg Nesterov and committed by Linus Torvalds 883606a7 dac27f4a

+1 -1
+1 -1
kernel/signal.c
··· 1657 1657 * a group stop in progress and we are the last to stop, 1658 1658 * report to the parent. When ptraced, every thread reports itself. 1659 1659 */ 1660 - if (stop_count < 0 || (current->ptrace & PT_PTRACED)) 1660 + if (current->ptrace & PT_PTRACED) 1661 1661 to_self = 1; 1662 1662 else if (stop_count == 0) 1663 1663 to_self = 0;