Changeset 96902 in vbox for trunk/src/VBox/VMM/VMMR3/CPUM.cpp
- Timestamp:
- Sep 27, 2022 2:30:57 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CPUM.cpp
r96839 r96902 1049 1049 AssertCompile(sizeof(pCtx->hwvirt.svm.abMsrBitmap) == SVM_MSRPM_PAGES * X86_PAGE_SIZE); 1050 1050 AssertCompile(sizeof(pCtx->hwvirt.svm.abIoBitmap) == SVM_IOPM_PAGES * X86_PAGE_SIZE); 1051 1052 /* Initialize non-zero values. */ 1053 pCtx->hwvirt.svm.GCPhysVmcb = NIL_RTGCPHYS; 1051 1054 } 1052 1055 } … … 1064 1067 1065 1068 RT_ZERO(pCtx->hwvirt.svm.Vmcb); 1066 pCtx->hwvirt.svm.uMsrHSavePa = 0; 1067 pCtx->hwvirt.svm.uPrevPauseTick = 0; 1069 RT_ZERO(pCtx->hwvirt.svm.HostState); 1070 RT_ZERO(pCtx->hwvirt.svm.abMsrBitmap); 1071 RT_ZERO(pCtx->hwvirt.svm.abIoBitmap); 1072 1073 pCtx->hwvirt.svm.uMsrHSavePa = 0; 1074 pCtx->hwvirt.svm.uPrevPauseTick = 0; 1075 pCtx->hwvirt.svm.GCPhysVmcb = NIL_RTGCPHYS; 1076 pCtx->hwvirt.svm.cPauseFilter = 0; 1077 pCtx->hwvirt.svm.cPauseFilterThreshold = 0; 1078 pCtx->hwvirt.svm.fInterceptEvents = false; 1068 1079 } 1069 1080
Note:
See TracChangeset
for help on using the changeset viewer.