- uint32_t vmcs_id; /* VMCS revision identifier */
- uint8_t vmcs_mem_type; /* VMCS memory type, (see enum above) */
- uint16_t vmcs_size; /* VMCS region size in bytes */
- boolean_t act_halt; /* HLT activity state supported */
- boolean_t act_shutdown; /* shutdown activity state supported */
- boolean_t act_SIPI; /* wait-for-SIPI activity supported */
- boolean_t act_CSTATE; /* C-state activity state supported */
- uint8_t cr3_targs; /* CR3 target values supported */
- uint32_t max_msrs; /* max MSRs to load/store on VMX transition */
- uint32_t mseg_id; /* MSEG revision identifier for SMI */
- /*
- * Allowed settings for these controls are specified by
- * a pair of bitfields: 0-settings contain 0 bits
- * corresponding to controls thay may be 0; 1-settings
- * contain 1 bits corresponding to controls that may be 1.
- */
- uint32_t pin_exctls_0; /* allowed 0s pin-based controls */
- uint32_t pin_exctls_1; /* allowed 1s pin-based controls */
-
- uint32_t proc_exctls_0; /* allowed 0s proc-based controls */
- uint32_t proc_exctls_1; /* allowed 1s proc-based controls */
-
- uint32_t sec_exctls_0; /* allowed 0s 2ndary proc-based ctrls */
- uint32_t sec_exctls_1; /* allowed 1s 2ndary proc-based ctrls */
-
- uint32_t exit_ctls_0; /* allowed 0s VM-exit controls */
- uint32_t exit_ctls_1; /* allowed 1s VM-exit controls */
-
- uint32_t enter_ctls_0; /* allowed 0s VM-entry controls */
- uint32_t enter_ctls_1; /* allowed 1s VM-entry controls */
-