[S390] ftrace: disable tracing on idle psw

Disable tracing on idle psw. Otherwise it would give us huge
preempt off times for idle. Which is rather pointless.

Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>

authored by Heiko Carstens and committed by Martin Schwidefsky 632448f6 af4c6874

+3
+3
arch/s390/kernel/process.c
··· 136 return; 137 } 138 trace_hardirqs_on(); 139 /* Wait for external, I/O or machine check interrupt. */ 140 __load_psw_mask(psw_kernel_bits | PSW_MASK_WAIT | 141 PSW_MASK_IO | PSW_MASK_EXT); 142 } 143 144 void cpu_idle(void)
··· 136 return; 137 } 138 trace_hardirqs_on(); 139 + /* Don't trace preempt off for idle. */ 140 + stop_critical_timings(); 141 /* Wait for external, I/O or machine check interrupt. */ 142 __load_psw_mask(psw_kernel_bits | PSW_MASK_WAIT | 143 PSW_MASK_IO | PSW_MASK_EXT); 144 + start_critical_timings(); 145 } 146 147 void cpu_idle(void)