Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 315829
b: refs/heads/master
c: 83c3a33
h: refs/heads/master
i:
  315827: f83f5b8
v: v3
  • Loading branch information
Xudong Hao authored and Avi Kivity committed Jun 5, 2012
1 parent dd98dae commit 51f889f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: aaf07bc291c828189ae5221b370905a89bbb859d
refs/heads/master: 83c3a3312235220476d3c207f67bd17be6e17ff9
12 changes: 12 additions & 0 deletions trunk/arch/x86/kvm/vmx.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@ static bool __read_mostly enable_unrestricted_guest = 1;
module_param_named(unrestricted_guest,
enable_unrestricted_guest, bool, S_IRUGO);

static bool __read_mostly enable_ept_ad_bits = 1;
module_param_named(eptad, enable_ept_ad_bits, bool, S_IRUGO);

static bool __read_mostly emulate_invalid_guest_state = 0;
module_param(emulate_invalid_guest_state, bool, S_IRUGO);

Expand Down Expand Up @@ -789,6 +792,11 @@ static inline bool cpu_has_vmx_ept_4levels(void)
return vmx_capability.ept & VMX_EPT_PAGE_WALK_4_BIT;
}

static inline bool cpu_has_vmx_ept_ad_bits(void)
{
return vmx_capability.ept & VMX_EPT_AD_BIT;
}

static inline bool cpu_has_vmx_invept_individual_addr(void)
{
return vmx_capability.ept & VMX_EPT_EXTENT_INDIVIDUAL_BIT;
Expand Down Expand Up @@ -2645,8 +2653,12 @@ static __init int hardware_setup(void)
!cpu_has_vmx_ept_4levels()) {
enable_ept = 0;
enable_unrestricted_guest = 0;
enable_ept_ad_bits = 0;
}

if (!cpu_has_vmx_ept_ad_bits())
enable_ept_ad_bits = 0;

if (!cpu_has_vmx_unrestricted_guest())
enable_unrestricted_guest = 0;

Expand Down

0 comments on commit 51f889f

Please sign in to comment.