Searched refs:cr0_guest_owned_bits (Results 1 – 3 of 3) sorted by relevance
51 if (tmask & vcpu->arch.cr0_guest_owned_bits) in kvm_read_cr0_bits()
1533 vcpu->arch.cr0_guest_owned_bits = X86_CR0_TS; in vmx_fpu_activate()1535 vcpu->arch.cr0_guest_owned_bits &= in vmx_fpu_activate()1537 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits); in vmx_fpu_activate()1566 vcpu->arch.cr0_guest_owned_bits = 0; in vmx_fpu_deactivate()1567 vmcs_writel(CR0_GUEST_HOST_MASK, ~vcpu->arch.cr0_guest_owned_bits); in vmx_fpu_deactivate()2877 ulong cr0_guest_owned_bits = vcpu->arch.cr0_guest_owned_bits; in vmx_decache_cr0_guest_bits() local2879 vcpu->arch.cr0 &= ~cr0_guest_owned_bits; in vmx_decache_cr0_guest_bits()2880 vcpu->arch.cr0 |= vmcs_readl(GUEST_CR0) & cr0_guest_owned_bits; in vmx_decache_cr0_guest_bits()4343 if (kvm_set_cr0(vcpu, (val & vcpu->arch.cr0_guest_owned_bits) | in handle_set_cr0()4344 (vcpu->arch.cr0 & ~vcpu->arch.cr0_guest_owned_bits))) in handle_set_cr0()[all …]
330 unsigned long cr0_guest_owned_bits; member