KVM: better readability of efer_reserved_bits
use EFER_SCE, EFER_LME and EFER_LMA instead of magic numbers. Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com> Signed-off-by: Avi Kivity <avi@redhat.com>
这个提交包含在:
@@ -81,9 +81,10 @@
|
||||
* - enable LME and LMA per default on 64 bit KVM
|
||||
*/
|
||||
#ifdef CONFIG_X86_64
|
||||
static u64 __read_mostly efer_reserved_bits = 0xfffffffffffffafeULL;
|
||||
static
|
||||
u64 __read_mostly efer_reserved_bits = ~((u64)(EFER_SCE | EFER_LME | EFER_LMA));
|
||||
#else
|
||||
static u64 __read_mostly efer_reserved_bits = 0xfffffffffffffffeULL;
|
||||
static u64 __read_mostly efer_reserved_bits = ~((u64)EFER_SCE);
|
||||
#endif
|
||||
|
||||
#define VM_STAT(x) offsetof(struct kvm, stat.x), KVM_STAT_VM
|
||||
|
在新工单中引用
屏蔽一个用户