aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/vmx.c
diff options
context:
space:
mode:
authorSheng Yang <sheng@linux.intel.com>2010-01-05 06:02:27 -0500
committerMarcelo Tosatti <mtosatti@redhat.com>2010-03-01 10:35:46 -0500
commit17cc393596823f4bbab81e68a9e23e7beadbcfca (patch)
tree7c5ffc52ebeab12dac3308a8a1aecffee37cb734 /arch/x86/kvm/vmx.c
parentc9c5417455b0c2e3c164883354b5480e5aee3b36 (diff)
KVM: x86: Rename gb_page_enable() to get_lpage_level() in kvm_x86_ops
Then the callback can provide the maximum supported large page level, which is more flexible. Also move the gb page support into x86_64 specific. Signed-off-by: Sheng Yang <sheng@linux.intel.com> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'arch/x86/kvm/vmx.c')
-rw-r--r--arch/x86/kvm/vmx.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
index f4486f460278..0fd0892553ec 100644
--- a/arch/x86/kvm/vmx.c
+++ b/arch/x86/kvm/vmx.c
@@ -4036,9 +4036,9 @@ static const struct trace_print_flags vmx_exit_reasons_str[] = {
4036 4036
4037#undef _ER 4037#undef _ER
4038 4038
4039static bool vmx_gb_page_enable(void) 4039static int vmx_get_lpage_level(void)
4040{ 4040{
4041 return false; 4041 return PT_DIRECTORY_LEVEL;
4042} 4042}
4043 4043
4044static inline u32 bit(int bitno) 4044static inline u32 bit(int bitno)
@@ -4131,7 +4131,7 @@ static struct kvm_x86_ops vmx_x86_ops = {
4131 .get_mt_mask = vmx_get_mt_mask, 4131 .get_mt_mask = vmx_get_mt_mask,
4132 4132
4133 .exit_reasons_str = vmx_exit_reasons_str, 4133 .exit_reasons_str = vmx_exit_reasons_str,
4134 .gb_page_enable = vmx_gb_page_enable, 4134 .get_lpage_level = vmx_get_lpage_level,
4135 4135
4136 .cpuid_update = vmx_cpuid_update, 4136 .cpuid_update = vmx_cpuid_update,
4137 4137