|
@@ -99,6 +99,9 @@ module_param(ignore_msrs, bool, S_IRUGO | S_IWUSR);
|
|
|
unsigned int min_timer_period_us = 500;
|
|
|
module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR);
|
|
|
|
|
|
+static bool __read_mostly kvmclock_periodic_sync = true;
|
|
|
+module_param(kvmclock_periodic_sync, bool, S_IRUGO);
|
|
|
+
|
|
|
bool kvm_has_tsc_control;
|
|
|
EXPORT_SYMBOL_GPL(kvm_has_tsc_control);
|
|
|
u32 kvm_max_guest_tsc_khz;
|
|
@@ -1767,6 +1770,9 @@ static void kvmclock_sync_fn(struct work_struct *work)
|
|
|
kvmclock_sync_work);
|
|
|
struct kvm *kvm = container_of(ka, struct kvm, arch);
|
|
|
|
|
|
+ if (!kvmclock_periodic_sync)
|
|
|
+ return;
|
|
|
+
|
|
|
schedule_delayed_work(&kvm->arch.kvmclock_update_work, 0);
|
|
|
schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
|
|
|
KVMCLOCK_SYNC_PERIOD);
|
|
@@ -7221,6 +7227,9 @@ void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
|
|
|
kvm_write_tsc(vcpu, &msr);
|
|
|
vcpu_put(vcpu);
|
|
|
|
|
|
+ if (!kvmclock_periodic_sync)
|
|
|
+ return;
|
|
|
+
|
|
|
schedule_delayed_work(&kvm->arch.kvmclock_sync_work,
|
|
|
KVMCLOCK_SYNC_PERIOD);
|
|
|
}
|