Changeset 55899 in vbox for trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
- Timestamp:
- May 18, 2015 9:47:57 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 100356
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r55863 r55899 12064 12064 Assert(sizeof(Eflags.u32) >= cbParm); 12065 12065 Eflags.u32 = 0; 12066 rc = PGMPhysRead(pVM, (RTGCPHYS)GCPtrStack, &Eflags.u32, cbParm );12066 rc = PGMPhysRead(pVM, (RTGCPHYS)GCPtrStack, &Eflags.u32, cbParm, PGMACCESSORIGIN_HM); 12067 12067 } 12068 12068 if (RT_FAILURE(rc)) … … 12117 12117 Eflags.Bits.u1VM = 0; 12118 12118 12119 rc = PGMPhysWrite(pVM, (RTGCPHYS)GCPtrStack, &Eflags.u, cbParm );12119 rc = PGMPhysWrite(pVM, (RTGCPHYS)GCPtrStack, &Eflags.u, cbParm, PGMACCESSORIGIN_HM); 12120 12120 if (RT_FAILURE(rc)) 12121 12121 { … … 12152 12152 &GCPtrStack); 12153 12153 if (RT_SUCCESS(rc)) 12154 rc = PGMPhysRead(pVM, (RTGCPHYS)GCPtrStack, &aIretFrame[0], sizeof(aIretFrame) );12154 rc = PGMPhysRead(pVM, (RTGCPHYS)GCPtrStack, &aIretFrame[0], sizeof(aIretFrame), PGMACCESSORIGIN_HM); 12155 12155 if (RT_FAILURE(rc)) 12156 12156 {
Note:
See TracChangeset
for help on using the changeset viewer.