Changeset 92892 in vbox for trunk/include/VBox
- Timestamp:
- Dec 14, 2021 8:57:53 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 148847
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/gvm.h
r92408 r92892 92 92 struct GVMMPERVCPU s; 93 93 #endif 94 uint8_t padding[ 64];94 uint8_t padding[256]; 95 95 } gvmm; 96 96 … … 133 133 /** Padding the structure size to page boundrary. */ 134 134 #ifdef VBOX_WITH_NEM_R0 135 uint8_t abPadding3[4096 - 64*2 - 64- 1024 - 64 - 896 - 64];135 uint8_t abPadding3[4096 - 64*2 - 256 - 1024 - 64 - 896 - 64]; 136 136 #else 137 uint8_t abPadding3[4096 - 64*2 - 64- 1024 - 896 - 64];137 uint8_t abPadding3[4096 - 64*2 - 256 - 1024 - 896 - 64]; 138 138 #endif 139 139 } GVMCPU; -
trunk/include/VBox/vmm/gvm.mac
r92408 r92892 44 44 45 45 alignb 64 46 .gvmm resb 6446 .gvmm resb 256 47 47 alignb 64 48 48 .hmr0 resb 1024 -
trunk/include/VBox/vmm/gvmm.h
r92721 r92892 32 32 33 33 #include <VBox/types.h> 34 #include <VBox/vmm/stam.h> 34 35 #include <VBox/sup.h> 36 #include <VBox/param.h> 35 37 #include <iprt/cpuset.h> /* RTCPUSET_MAX_CPUS */ 36 38 … … 131 133 132 134 /** 135 * Per VCpu statistics 136 */ 137 typedef struct GVMMSTATSVMCPU 138 { 139 uint32_t cWakeUpTimerHits; 140 uint32_t cWakeUpTimerMisses; 141 uint32_t cWakeUpTimerCanceled; 142 uint32_t cWakeUpTimerSameCpu; 143 STAMPROFILE Start; 144 STAMPROFILE Stop; 145 } GVMMSTATSVMCPU; 146 /** Ptoiner to the GVMM per VCpu statistics. */ 147 typedef GVMMSTATSVMCPU *PGVMMSTATSVMCPU; 148 149 /** 133 150 * The GVMM statistics. 134 151 */ … … 147 164 /** The number of valid entries in aHostCpus. */ 148 165 uint32_t cHostCpus; 166 /** Per EMT statistics for the specified VM, zero if non specified. */ 167 GVMMSTATSVMCPU aVCpus[VMM_MAX_CPU_COUNT]; 149 168 /** Per host CPU statistics. */ 150 169 GVMMSTATSHOSTCPU aHostCpus[RTCPUSET_MAX_CPUS]; -
trunk/include/VBox/vmm/uvm.h
r86699 r92892 139 139 struct STAMUSERPERVM s; 140 140 #endif 141 uint8_t padding[ 25056];141 uint8_t padding[30208]; 142 142 } stam; 143 143
Note:
See TracChangeset
for help on using the changeset viewer.