Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 197590
b: refs/heads/master
c: 06fc777
h: refs/heads/master
v: v3
  • Loading branch information
Joerg Roedel authored and Avi Kivity committed Apr 25, 2010
1 parent 3c3d789 commit 5ae380f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 88ab24adc7142506c8583ac36a34fa388300b750
refs/heads/master: 06fc7772690dec2a0e3814633357babf8f63af41
15 changes: 9 additions & 6 deletions trunk/arch/x86/kvm/svm.c
Original file line number Diff line number Diff line change
Expand Up @@ -1633,6 +1633,9 @@ static int nested_svm_vmexit(struct vcpu_svm *svm)
if (!nested_vmcb)
return 1;

/* Exit nested SVM mode */
svm->nested.vmcb = 0;

/* Give the current vmcb to the guest */
disable_gif(svm);

Expand Down Expand Up @@ -1720,9 +1723,6 @@ static int nested_svm_vmexit(struct vcpu_svm *svm)
svm->vmcb->save.cpl = 0;
svm->vmcb->control.exit_int_info = 0;

/* Exit nested SVM mode */
svm->nested.vmcb = 0;

nested_svm_unmap(page);

kvm_mmu_reset_context(&svm->vcpu);
Expand Down Expand Up @@ -1757,14 +1757,14 @@ static bool nested_svm_vmrun(struct vcpu_svm *svm)
struct vmcb *hsave = svm->nested.hsave;
struct vmcb *vmcb = svm->vmcb;
struct page *page;
u64 vmcb_gpa;

vmcb_gpa = svm->vmcb->save.rax;

nested_vmcb = nested_svm_map(svm, svm->vmcb->save.rax, &page);
if (!nested_vmcb)
return false;

/* nested_vmcb is our indicator if nested SVM is activated */
svm->nested.vmcb = svm->vmcb->save.rax;

trace_kvm_nested_vmrun(svm->vmcb->save.rip - 3, svm->nested.vmcb,
nested_vmcb->save.rip,
nested_vmcb->control.int_ctl,
Expand Down Expand Up @@ -1879,6 +1879,9 @@ static bool nested_svm_vmrun(struct vcpu_svm *svm)

nested_svm_unmap(page);

/* nested_vmcb is our indicator if nested SVM is activated */
svm->nested.vmcb = vmcb_gpa;

enable_gif(svm);

return true;
Expand Down

0 comments on commit 5ae380f

Please sign in to comment.