kvm_vmx.h 222 B

1234567891011121314
  1. #ifndef __KVM_VMX_H
  2. #define __KVM_VMX_H
  3. #ifdef CONFIG_X86_64
  4. /*
  5. * avoid save/load MSR_SYSCALL_MASK and MSR_LSTAR by std vt
  6. * mechanism (cpu bug AA24)
  7. */
  8. #define NR_BAD_MSRS 2
  9. #else
  10. #define NR_BAD_MSRS 0
  11. #endif
  12. #endif