Changeset 73275 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jul 20, 2018 4:02:44 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 123882
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
r73272 r73275 142 142 NIL_PGMPOOL_IDX, UINT32_MAX, false /*fLockPage*/, 143 143 &pNewShwPageCR3); 144 if (rc == VERR_PGM_POOL_FLUSHED) 144 if (rc == VERR_PGM_POOL_FLUSHED) /** @todo r=bird: VERR_PGM_POOL_FLUSHED won't be returned */ 145 145 { 146 146 Log(("Bth-Enter: PGM pool flushed -> signal sync cr3\n")); … … 2952 2952 return VINF_SUCCESS; 2953 2953 } 2954 else if (rc == VERR_PGM_POOL_FLUSHED) 2954 else if (rc == VERR_PGM_POOL_FLUSHED) /** @todo r=bird: VERR_PGM_POOL_FLUSHED won't be returned */ 2955 2955 { 2956 2956 VMCPU_FF_SET(pVCpu, VMCPU_FF_PGM_SYNC_CR3); -
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r71586 r73275 2920 2920 * @returns VBox status code. 2921 2921 * @retval VINF_SUCCESS if successfully added. 2922 * @retval VERR_PGM_POOL_FLUSHED if the pool was flushed. 2922 * @retval <del>VERR_PGM_POOL_FLUSHED</del> if the pool was flushed - this is 2923 * not returned anywhere anymore. 2923 2924 * @param pPool The pool. 2924 2925 * @param iUser The user index. … … 2950 2951 * @returns VBox status code. 2951 2952 * @retval VINF_SUCCESS if successfully added. 2952 * @retval VERR_PGM_POOL_FLUSHED if the pool was flushed. 2953 * @retval <del>VERR_PGM_POOL_FLUSHED</del> if the pool was flushed - this is 2954 * not returned anywhere anymore. 2955 * 2953 2956 * @param pPool The pool. 2954 2957 * @param pPage The cached page. … … 3038 3041 * @returns VBox status code. 3039 3042 * @retval VINF_SUCCESS if successfully added. 3040 * @retval VERR_PGM_POOL_FLUSHED if the pool was flushed. 3043 * @retval <del>VERR_PGM_POOL_FLUSHED</del> if the pool was flushed - this is 3044 * not returned anywhere anymore. 3045 * 3041 3046 * @param pPool The pool. 3042 3047 * @param pPage The cached page. … … 5099 5104 * @returns VBox status code. 5100 5105 * @retval VINF_SUCCESS on success. 5101 * @retval VERR_PGM_POOL_FLUSHED if the pool was flushed. 5106 * @retval <del>VERR_PGM_POOL_FLUSHED</del> if the pool was flushed - this is 5107 * not returned anywhere anymore. 5102 5108 * 5103 5109 * @param pPool The pool. … … 5151 5157 * @retval VINF_SUCCESS if a NEW page was allocated. 5152 5158 * @retval VINF_PGM_CACHED_PAGE if a CACHED page was returned. 5153 * @retval VERR_PGM_POOL_FLUSHED if the pool was flushed. 5159 * @retval <del>VERR_PGM_POOL_FLUSHED</del> if the pool was flushed - this is 5160 * not returned anywhere anymore. 5154 5161 * 5155 5162 * @param pVM The cross context VM structure.
Note:
See TracChangeset
for help on using the changeset viewer.