Home
last modified time | relevance | path

Searched refs:EFER_LME (Results 1 – 5 of 5) sorted by relevance

/linux-4.4.14/arch/x86/include/asm/
Dmsr-index.h27 #define EFER_LME (1<<_EFER_LME) macro
/linux-4.4.14/arch/x86/kvm/
Dvmx.c1815 ignore_bits |= EFER_LMA | EFER_LME; in update_transition_efer()
1831 guest_efer &= ~EFER_LME; in update_transition_efer()
3574 msr->data = efer & ~EFER_LME; in vmx_set_efer()
3726 if (vcpu->arch.efer & EFER_LME) { in vmx_set_cr0()
9751 vcpu->arch.efer |= (EFER_LMA | EFER_LME); in prepare_vmcs02()
9753 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME); in prepare_vmcs02()
9911 ia32e != !!(vmcs12->guest_ia32_efer & EFER_LME))) { in nested_vmx_run()
9929 ia32e != !!(vmcs12->host_ia32_efer & EFER_LME)) { in nested_vmx_run()
10294 vcpu->arch.efer |= (EFER_LMA | EFER_LME); in load_vmcs12_host_state()
10296 vcpu->arch.efer &= ~(EFER_LMA | EFER_LME); in load_vmcs12_host_state()
Dsvm.c479 efer &= ~EFER_LME; in svm_set_efer()
1473 if (vcpu->arch.efer & EFER_LME) { in svm_set_cr0()
1476 svm->vmcb->save.efer |= EFER_LMA | EFER_LME; in svm_set_cr0()
1481 svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME); in svm_set_cr0()
Dx86.c84 u64 __read_mostly efer_reserved_bits = ~((u64)(EFER_SCE | EFER_LME | EFER_LMA));
605 if ((vcpu->arch.efer & EFER_LME)) { in kvm_set_cr0()
1014 && (vcpu->arch.efer & EFER_LME) != (efer & EFER_LME)) in set_efer()
Demulate.c3897 if ((new_val & X86_CR0_PG) && (efer & EFER_LME) && in check_cr_write()