Changeset 35902 in vbox
- Timestamp:
- Feb 8, 2011 4:13:18 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/VMMR0.cpp
r35885 r35902 31 31 #include <VBox/vmm/vm.h> 32 32 #ifdef VBOX_WITH_PCI_PASSTHROUGH 33 # include <VBox/vmm/pdmpci.h>33 # include <VBox/vmm/pdmpci.h> 34 34 #endif 35 35 … … 42 42 #include <VBox/version.h> 43 43 #include <VBox/log.h> 44 45 44 46 45 #include <iprt/asm-amd64-x86.h> … … 142 141 return VINF_SUCCESS; 143 142 } 143 144 /* 145 * Bail out. 146 */ 147 #ifdef VBOX_WITH_PCI_PASSTHROUGH 148 PciRawR0Term(); 149 #endif 144 150 } 145 146 /* bail out */ 147 LogFlow(("ModuleTerm: returns %Rrc\n", rc)); 148 #ifdef VBOX_WITH_PCI_PASSTHROUGH 149 PciRawR0Term(); 150 #endif 151 IntNetR0Term(); 152 } 151 153 #ifdef VBOX_WITH_2X_4GB_ADDR_SPACE 152 PGMR0DynMapTerm(); 153 #endif 154 } 154 PGMR0DynMapTerm(); 155 #endif 155 156 } 156 157 PGMDeregisterStringFormatTypes(); … … 187 188 188 189 /* 189 * PGM (Darwin) and HWACCMglobal cleanup.190 * PGM (Darwin), HWACCM and PciRaw global cleanup. 190 191 */ 191 192 #ifdef VBOX_WITH_2X_4GB_ADDR_SPACE 192 193 PGMR0DynMapTerm(); 193 194 #endif 194 195 195 #ifdef VBOX_WITH_PCI_PASSTHROUGH 196 /*197 * Terminate PCI passthrough service.198 */199 196 PciRawR0Term(); 200 197 #endif … … 1556 1553 RTAssertMsg2V(pszFormat, va); 1557 1554 } 1555
Note:
See TracChangeset
for help on using the changeset viewer.