Lines Matching defs:msr
407 struct vmx_uret_msr *vmx_find_uret_msr(struct vcpu_vmx *vmx, u32 msr);
414 int vmx_find_loadstore_msr_slot(struct vmx_msrs *m, u32 msr);
417 void vmx_disable_intercept_for_msr(struct kvm_vcpu *vcpu, u32 msr, int type);
418 void vmx_enable_intercept_for_msr(struct kvm_vcpu *vcpu, u32 msr, int type);
423 static inline void vmx_set_intercept_for_msr(struct kvm_vcpu *vcpu, u32 msr,
427 vmx_enable_intercept_for_msr(vcpu, msr, type);
429 vmx_disable_intercept_for_msr(vcpu, msr, type);
444 u32 msr) \
448 if (msr <= 0x1fff) \
449 return bitop##_bit(msr, bitmap + base / f); \
450 else if ((msr >= 0xc0000000) && (msr <= 0xc0001fff)) \
451 return bitop##_bit(msr & 0x1fff, bitmap + (base + 0x400) / f); \