KVM guest: prevent tracing recursion with kvmclock

Prevent tracing of preempt_disable() in get_cpu_var() in
kvm_clock_read(). When CONFIG_DEBUG_PREEMPT is enabled,
preempt_disable/enable() are traced and this causes the function_graph
tracer to go into an infinite recursion. By open coding the
preempt_disable() around the get_cpu_var(), we can use the notrace
version which prevents preempt_disable/enable() from being traced and
prevents the recursion.

Based on a similar patch for Xen from Jeremy Fitzhardinge.

Tested-by: Gleb Natapov <gleb@redhat.com>
Acked-by: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Avi Kivity <avi@redhat.com>

+3 -2
+3 -2
arch/x86/kernel/kvmclock.c
··· 74 74 struct pvclock_vcpu_time_info *src; 75 75 cycle_t ret; 76 76 77 - src = &get_cpu_var(hv_clock); 77 + preempt_disable_notrace(); 78 + src = &__get_cpu_var(hv_clock); 78 79 ret = pvclock_clocksource_read(src); 79 - put_cpu_var(hv_clock); 80 + preempt_enable_notrace(); 80 81 return ret; 81 82 } 82 83