aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/svm.c
diff options
context:
space:
mode:
authorMarcelo Tosatti <mtosatti@redhat.com>2012-02-03 12:43:55 -0500
committerAvi Kivity <avi@redhat.com>2012-03-08 07:10:07 -0500
commitf1e2b26003c41e581243c09ceed7567677449468 (patch)
tree9c6dc330959815651611bf9636c401ba24cd6cd9 /arch/x86/kvm/svm.c
parent6f526ec5383dcd5fa5ffc7b3ac1d62099a0b46ad (diff)
KVM: Allow adjust_tsc_offset to be in host or guest cycles
Redefine the API to take a parameter indicating whether an adjustment is in host or guest cycles. Signed-off-by: Zachary Amsden <zamsden@gmail.com> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com> Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm/svm.c')
-rw-r--r--arch/x86/kvm/svm.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c
index e12026e5244e..0b7690ee20bd 100644
--- a/arch/x86/kvm/svm.c
+++ b/arch/x86/kvm/svm.c
@@ -1016,10 +1016,14 @@ static void svm_write_tsc_offset(struct kvm_vcpu *vcpu, u64 offset)
1016 mark_dirty(svm->vmcb, VMCB_INTERCEPTS); 1016 mark_dirty(svm->vmcb, VMCB_INTERCEPTS);
1017} 1017}
1018 1018
1019static void svm_adjust_tsc_offset(struct kvm_vcpu *vcpu, s64 adjustment) 1019static void svm_adjust_tsc_offset(struct kvm_vcpu *vcpu, s64 adjustment, bool host)
1020{ 1020{
1021 struct vcpu_svm *svm = to_svm(vcpu); 1021 struct vcpu_svm *svm = to_svm(vcpu);
1022 1022
1023 WARN_ON(adjustment < 0);
1024 if (host)
1025 adjustment = svm_scale_tsc(vcpu, adjustment);
1026
1023 svm->vmcb->control.tsc_offset += adjustment; 1027 svm->vmcb->control.tsc_offset += adjustment;
1024 if (is_guest_mode(vcpu)) 1028 if (is_guest_mode(vcpu))
1025 svm->nested.hsave->control.tsc_offset += adjustment; 1029 svm->nested.hsave->control.tsc_offset += adjustment;