Changeset 40727 in vbox for trunk/src/VBox
- Timestamp:
- Mar 30, 2012 1:53:46 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 77195
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IOMAllMMIO.cpp
r40449 r40727 2332 2332 * (This is a special optimization used by the VGA device.) 2333 2333 * 2334 * @returns VBox status code. 2334 * @returns VBox status code. This API may return VINF_SUCCESS even if no 2335 * remapping is made,. 2335 2336 * 2336 2337 * @param pVM The virtual machine. … … 2353 2354 return VINF_SUCCESS; /* ignore */ 2354 2355 2355 IOM_LOCK(pVM); 2356 int rc = IOM_LOCK(pVM); 2357 if (RT_FAILURE(rc)) 2358 return VINF_SUCCESS; /* better luck the next time around */ 2356 2359 2357 2360 /* … … 2371 2374 GCPhysRemapped &= ~(RTGCPHYS)PAGE_OFFSET_MASK; 2372 2375 2373 intrc = PGMHandlerPhysicalPageAlias(pVM, pRange->GCPhys, GCPhys, GCPhysRemapped);2376 rc = PGMHandlerPhysicalPageAlias(pVM, pRange->GCPhys, GCPhys, GCPhysRemapped); 2374 2377 2375 2378 IOM_UNLOCK(pVM);
Note:
See TracChangeset
for help on using the changeset viewer.