sched: optimize sched_clock() a bit

sched_clock() uses cycles_2_ns() needlessly - which is an irq-disabling
variant of __cycles_2_ns().

Most of the time sched_clock() is called with irqs disabled already.
The few places that call it with irqs enabled need to be updated.

Signed-off-by: Ingo Molnar <mingo@elte.hu>

+1 -1
+1 -1
arch/x86/kernel/tsc.c
··· 55 55 rdtscll(this_offset); 56 56 57 57 /* return the value in ns */ 58 - return cycles_2_ns(this_offset); 58 + return __cycles_2_ns(this_offset); 59 59 } 60 60 61 61 /* We need to define a real function for sched_clock, to override the