Changeset 48019 in vbox for trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
- Timestamp:
- Aug 23, 2013 11:56:47 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r47989 r48019 1718 1718 | HM_CHANGED_SVM_RESERVED3); 1719 1719 1720 AssertMsg(! pVCpu->hm.s.fContextUseFlags,1720 AssertMsg(!(pVCpu->hm.s.fContextUseFlags & HM_CHANGED_ALL_GUEST), 1721 1721 ("Missed updating flags while loading guest state. pVM=%p pVCpu=%p fContextUseFlags=%#RX32\n", 1722 1722 pVM, pVCpu, pVCpu->hm.s.fContextUseFlags)); … … 2770 2770 int rc = hmR0SvmLoadGuestState(pVM, pVCpu, pCtx); 2771 2771 AssertRC(rc); 2772 pVCpu->hm.s.fContextUseFlags &= ~HM_CHANGED_HOST_CONTEXT; /* Preemption might set this, nothing to do on AMD-V. */ 2772 2773 AssertMsg(!pVCpu->hm.s.fContextUseFlags, ("fContextUseFlags =%#x\n", pVCpu->hm.s.fContextUseFlags)); 2773 2774 STAM_COUNTER_INC(&pVCpu->hm.s.StatLoadFull);
Note:
See TracChangeset
for help on using the changeset viewer.