@@ -6306,21 +6306,14 @@ static void kvm_sched_out(struct preempt_notifier *pn,
/**
* kvm_get_running_vcpu - get the vcpu running on the current CPU.
*
- * We can disable preemption locally around accessing the per-CPU variable,
- * and use the resolved vcpu pointer after enabling preemption again,
+ * The result is either NULL or the vcpu running on the current thread
* because even if the current thread is migrated to another CPU, reading
* the per-CPU value later will give us the same value as we update the
* per-CPU variable in the preempt notifier handlers.
*/
struct kvm_vcpu *kvm_get_running_vcpu(void)
{
- struct kvm_vcpu *vcpu;
-
- preempt_disable();
- vcpu = __this_cpu_read(kvm_running_vcpu);
- preempt_enable();
-
- return vcpu;
+ return this_cpu_read(kvm_running_vcpu);
}
EXPORT_SYMBOL_GPL(kvm_get_running_vcpu);