Changeset 49403 in vbox for trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
- Timestamp:
- Nov 7, 2013 4:22:51 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r49288 r49403 8987 8987 HMVMX_VALIDATE_EXIT_HANDLER_PARAMS(); 8988 8988 STAM_COUNTER_INC(&pVCpu->hm.s.StatExitExtInt); 8989 /* 32-bit Windows hosts (4 cores) has trouble with this; causes higher interrupt latency. */ 8990 #if HC_ARCH_BITS == 64 8991 Assert(ASMIntAreEnabled()); 8992 if (pVCpu->CTX_SUFF(pVM)->hm.s.vmx.fUsePreemptTimer) 8989 /* Windows hosts (32-bit and 64-bit) have DPC latency issues. See @bugref{6853}. */ 8990 if (VMMR0ThreadCtxHooksAreRegistered(pVCpu)) 8993 8991 return VINF_SUCCESS; 8994 #endif8995 8992 return VINF_EM_RAW_INTERRUPT; 8996 8993 }
Note:
See TracChangeset
for help on using the changeset viewer.