Home
last modified time | relevance | path

Searched refs:pin_based_exec_ctrl (Results 1 – 3 of 3) sorted by relevance

/linux-6.1.9/arch/x86/kvm/vmx/
Dcapabilities.h60 u32 pin_based_exec_ctrl; member
84 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_VIRTUAL_NMIS && in cpu_has_virtual_nmis()
90 return vmcs_config.pin_based_exec_ctrl & in cpu_has_vmx_preemption_timer()
96 return vmcs_config.pin_based_exec_ctrl & PIN_BASED_POSTED_INTR; in cpu_has_vmx_posted_intr()
Dvmx.c2719 vmcs_conf->pin_based_exec_ctrl = _pin_based_exec_control; in setup_vmcs_config()
4263 u32 pin_based_exec_ctrl = vmcs_config.pin_based_exec_ctrl; in vmx_pin_based_exec_ctrl() local
4266 pin_based_exec_ctrl &= ~PIN_BASED_POSTED_INTR; in vmx_pin_based_exec_ctrl()
4269 pin_based_exec_ctrl &= ~PIN_BASED_VIRTUAL_NMIS; in vmx_pin_based_exec_ctrl()
4272 pin_based_exec_ctrl &= ~PIN_BASED_VMX_PREEMPTION_TIMER; in vmx_pin_based_exec_ctrl()
4274 return pin_based_exec_ctrl; in vmx_pin_based_exec_ctrl()
6105 u32 cpu_based_exec_ctrl, pin_based_exec_ctrl, secondary_exec_control; in dump_vmcs() local
6118 pin_based_exec_ctrl = vmcs_read32(PIN_BASED_VM_EXEC_CONTROL); in dump_vmcs()
6232 pin_based_exec_ctrl, vmentry_ctl, vmexit_ctl); in dump_vmcs()
6264 if (pin_based_exec_ctrl & PIN_BASED_POSTED_INTR) in dump_vmcs()
Dnested.c6734 msrs->pinbased_ctls_high = vmcs_conf->pin_based_exec_ctrl; in nested_vmx_setup_ctls_msrs()