[S390] use set_current_state in sigsuspend

Use set_current_state instead of a direct assignment to set the
task state of the current process.

Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>

authored by Martin Schwidefsky and committed by Martin Schwidefsky 0b4d7890 428aecf6

+1 -1
+1 -1
arch/s390/kernel/signal.c
··· 64 64 recalc_sigpending(); 65 65 spin_unlock_irq(&current->sighand->siglock); 66 66 67 - current->state = TASK_INTERRUPTIBLE; 67 + set_current_state(TASK_INTERRUPTIBLE); 68 68 schedule(); 69 69 set_thread_flag(TIF_RESTORE_SIGMASK); 70 70