Changeset 57989 in vbox for trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
- Timestamp:
- Oct 1, 2015 4:44:12 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r57886 r57989 10153 10153 10154 10154 rc = GIMHypercall(pVCpu, pMixedCtx); 10155 if (RT_SUCCESS(rc)) 10155 if ( rc == VINF_SUCCESS 10156 || rc == VINF_GIM_R3_HYPERCALL) 10156 10157 { 10157 10158 /* If the hypercall changes anything other than guest general-purpose registers, 10158 10159 we would need to reload the guest changed bits here before VM-reentry. */ 10159 10160 hmR0VmxAdvanceGuestRip(pVCpu, pMixedCtx, pVmxTransient); 10160 return VINF_SUCCESS;10161 return rc; 10161 10162 } 10162 10163 }
Note:
See TracChangeset
for help on using the changeset viewer.