Changeset 56062 in vbox
- Timestamp:
- May 25, 2015 3:46:04 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPhys.cpp
r56056 r56062 141 141 NOREF(pVM); NOREF(pVCpu); NOREF(GCPhys); NOREF(pvPhys); NOREF(pvBuf); NOREF(cbBuf); 142 142 NOREF(enmAccessType); NOREF(enmOrigin); NOREF(pvUser); 143 AssertFailed(); /// dont commit me!!!144 143 return VINF_EM_RAW_EMULATE_INSTR; 145 144 } … … 2304 2303 Assert((pPhys->Core.KeyLast & PAGE_OFFSET_MASK) == PAGE_OFFSET_MASK); 2305 2304 #ifndef IN_RING3 2306 if (enmOrigin != PGMACCESSORIGIN_I OM)2305 if (enmOrigin != PGMACCESSORIGIN_IEM) 2307 2306 { 2308 2307 /* Cannot reliably handle informational status codes in this context */ … … 2354 2353 2355 2354 # ifndef IN_RING3 2356 if (enmOrigin != PGMACCESSORIGIN_I OM)2355 if (enmOrigin != PGMACCESSORIGIN_IEM) 2357 2356 { 2358 2357 /* Cannot reliably handle informational status codes in this context */ … … 2513 2512 { 2514 2513 pgmUnlock(pVM); 2515 return rcStrict ;2514 return rcStrict2; 2516 2515 } 2517 2516 } … … 2597 2596 Assert(GCPhys >= pCur->Core.Key && GCPhys <= pCur->Core.KeyLast); 2598 2597 #ifndef IN_RING3 2599 if (enmOrigin != PGMACCESSORIGIN_I OM)2598 if (enmOrigin != PGMACCESSORIGIN_IEM) 2600 2599 /* Cannot reliably handle informational status codes in this context */ 2601 2600 return VERR_PGM_PHYS_WR_HIT_HANDLER; … … 2674 2673 { 2675 2674 # ifndef IN_RING3 2676 if (enmOrigin != PGMACCESSORIGIN_I OM)2675 if (enmOrigin != PGMACCESSORIGIN_IEM) 2677 2676 /* Cannot reliably handle informational status codes in this context */ 2678 2677 return VERR_PGM_PHYS_WR_HIT_HANDLER; … … 2848 2847 { 2849 2848 #ifndef IN_RING3 2850 if (enmOrigin != PGMACCESSORIGIN_I OM)2849 if (enmOrigin != PGMACCESSORIGIN_IEM) 2851 2850 /* Cannot reliably handle informational status codes in this context */ 2852 2851 return VERR_PGM_PHYS_WR_HIT_HANDLER; … … 2887 2886 { 2888 2887 # ifndef IN_RING3 2889 if (enmOrigin != PGMACCESSORIGIN_I OM)2888 if (enmOrigin != PGMACCESSORIGIN_IEM) 2890 2889 /* Cannot reliably handle informational status codes in this context */ 2891 2890 return VERR_PGM_PHYS_WR_HIT_HANDLER; … … 2917 2916 { 2918 2917 # ifndef IN_RING3 2919 if (enmOrigin != PGMACCESSORIGIN_I OM)2918 if (enmOrigin != PGMACCESSORIGIN_IEM) 2920 2919 /* Cannot reliably handle informational status codes in this context */ 2921 2920 return VERR_PGM_PHYS_WR_HIT_HANDLER; … … 3136 3135 { 3137 3136 pgmUnlock(pVM); 3138 return rcStrict ;3137 return rcStrict2; 3139 3138 } 3140 3139 }
Note:
See TracChangeset
for help on using the changeset viewer.