- Timestamp:
- May 24, 2015 5:49:19 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPhys.cpp
r56055 r56056 134 134 * @callback_method_impl{FNPGMPHYSHANDLER, 135 135 * Dummy for forcing ring-3 handling of the access.} 136 *137 * @remarks The @a pvUser argument points to the PGMROMRANGE.138 136 */ 139 137 DECLEXPORT(VBOXSTRICTRC) … … 143 141 NOREF(pVM); NOREF(pVCpu); NOREF(GCPhys); NOREF(pvPhys); NOREF(pvBuf); NOREF(cbBuf); 144 142 NOREF(enmAccessType); NOREF(enmOrigin); NOREF(pvUser); 143 AssertFailed(); /// dont commit me!!! 145 144 return VINF_EM_RAW_EMULATE_INSTR; 146 145 } … … 150 149 * @callback_method_impl{FNPGMRZPHYSPFHANDLER, 151 150 * Dummy for forcing ring-3 handling of the access.} 152 *153 * @remarks The @a pvUser argument points to the PGMROMRANGE.154 151 */ 155 152 VMMDECL(VBOXSTRICTRC) pgmPhysPfHandlerRedirectToHC(PVM pVM, PVMCPU pVCpu, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, … … 2307 2304 Assert((pPhys->Core.KeyLast & PAGE_OFFSET_MASK) == PAGE_OFFSET_MASK); 2308 2305 #ifndef IN_RING3 2309 //if (enmOrigin != PGMACCESSORIGIN_IOM)2306 if (enmOrigin != PGMACCESSORIGIN_IOM) 2310 2307 { 2311 2308 /* Cannot reliably handle informational status codes in this context */ … … 2357 2354 2358 2355 # ifndef IN_RING3 2359 //if (enmOrigin != PGMACCESSORIGIN_IOM)2356 if (enmOrigin != PGMACCESSORIGIN_IOM) 2360 2357 { 2361 2358 /* Cannot reliably handle informational status codes in this context */ … … 2600 2597 Assert(GCPhys >= pCur->Core.Key && GCPhys <= pCur->Core.KeyLast); 2601 2598 #ifndef IN_RING3 2602 //if (enmOrigin != PGMACCESSORIGIN_IOM)2599 if (enmOrigin != PGMACCESSORIGIN_IOM) 2603 2600 /* Cannot reliably handle informational status codes in this context */ 2604 2601 return VERR_PGM_PHYS_WR_HIT_HANDLER; … … 2677 2674 { 2678 2675 # ifndef IN_RING3 2679 //if (enmOrigin != PGMACCESSORIGIN_IOM)2676 if (enmOrigin != PGMACCESSORIGIN_IOM) 2680 2677 /* Cannot reliably handle informational status codes in this context */ 2681 2678 return VERR_PGM_PHYS_WR_HIT_HANDLER; … … 2851 2848 { 2852 2849 #ifndef IN_RING3 2853 //if (enmOrigin != PGMACCESSORIGIN_IOM)2850 if (enmOrigin != PGMACCESSORIGIN_IOM) 2854 2851 /* Cannot reliably handle informational status codes in this context */ 2855 2852 return VERR_PGM_PHYS_WR_HIT_HANDLER; … … 2890 2887 { 2891 2888 # ifndef IN_RING3 2892 //if (enmOrigin != PGMACCESSORIGIN_IOM)2889 if (enmOrigin != PGMACCESSORIGIN_IOM) 2893 2890 /* Cannot reliably handle informational status codes in this context */ 2894 2891 return VERR_PGM_PHYS_WR_HIT_HANDLER; … … 2920 2917 { 2921 2918 # ifndef IN_RING3 2922 //if (enmOrigin != PGMACCESSORIGIN_IOM)2919 if (enmOrigin != PGMACCESSORIGIN_IOM) 2923 2920 /* Cannot reliably handle informational status codes in this context */ 2924 2921 return VERR_PGM_PHYS_WR_HIT_HANDLER;
Note:
See TracChangeset
for help on using the changeset viewer.