Changeset 14114 in vbox for trunk/src/VBox/VMM/VMMAll/PGMAll.cpp
- Timestamp:
- Nov 11, 2008 11:37:04 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAll.cpp
r14038 r14114 1894 1894 1895 1895 1896 # ifdef IN_RC 1896 1897 /** 1897 1898 * Temporarily maps one host page specified by HC physical address. … … 1911 1912 { 1912 1913 AssertMsg(!(HCPhys & PAGE_OFFSET_MASK), ("HCPhys=%RHp\n", HCPhys)); 1913 # ifdef IN_RC1914 1914 1915 1915 /* … … 1961 1961 Log4(("PGMGCDynMapHCPage: HCPhys=%RHp pv=%p iPage=%d\n", HCPhys, pv, iPage)); 1962 1962 return VINF_SUCCESS; 1963 1964 #else /* VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0 */ 1965 /** @todo @bugref{3202}: Implement ring-0 mapping cache similar to the one in 1966 * RC. To begin with, a simple but expensive one based on 1967 * RTR0MemObjEnterPhys can be used to get things started. Later a 1968 * global cache with mappings per CPU (to avoid shootdown) should be 1969 * employed. */ 1970 AssertFailed(); 1971 return VERR_NOT_IMPLEMENTED; 1972 #endif /* VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0 */ 1973 } 1963 } 1964 # endif /* IN_RC */ 1974 1965 1975 1966
Note:
See TracChangeset
for help on using the changeset viewer.