You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef __KVM_VMX_H
|
|
#define __KVM_VMX_H
|
|
|
|
#ifdef CONFIG_X86_64
|
|
/*
|
|
* avoid save/load MSR_SYSCALL_MASK and MSR_LSTAR by std vt
|
|
* mechanism (cpu bug AA24)
|
|
*/
|
|
#define NR_BAD_MSRS 2
|
|
#else
|
|
#define NR_BAD_MSRS 0
|
|
#endif
|
|
|
|
#endif
|
|
|