Changeset 86499 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Oct 8, 2020 5:06:45 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 140814
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PDMLdr.cpp
r86426 r86499 149 149 { 150 150 case PDMMOD_TYPE_R0: 151 { 151 152 if (fFinal) 152 153 { … … 160 161 /* Postpone ring-0 module till the PDMR3TermUVM() phase as VMMR0.r0 is still 161 162 busy when we're called the first time very very early in vmR3Destroy(). */ 162 pModule = pModule->pNext; 163 PPDMMOD pNextModule = pModule->pNext; 164 pModule->pNext = pUVM->pdm.s.pModules; 165 pUVM->pdm.s.pModules = pModule; 166 pModule = pNextModule; 163 167 continue; 168 } 164 169 165 170 #ifdef VBOX_WITH_RAW_MODE_KEEP
Note:
See TracChangeset
for help on using the changeset viewer.