diff options
author | Sheng Yang <sheng@linux.intel.com> | 2010-01-05 06:02:27 -0500 |
---|---|---|
committer | Marcelo Tosatti <mtosatti@redhat.com> | 2010-03-01 10:35:46 -0500 |
commit | 17cc393596823f4bbab81e68a9e23e7beadbcfca (patch) | |
tree | 7c5ffc52ebeab12dac3308a8a1aecffee37cb734 /arch/x86/kvm/svm.c | |
parent | c9c5417455b0c2e3c164883354b5480e5aee3b36 (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/svm.c')
-rw-r--r-- | arch/x86/kvm/svm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c index b373ae6fb974..cf64fc026e3e 100644 --- a/arch/x86/kvm/svm.c +++ b/arch/x86/kvm/svm.c | |||
@@ -2911,9 +2911,9 @@ static const struct trace_print_flags svm_exit_reasons_str[] = { | |||
2911 | { -1, NULL } | 2911 | { -1, NULL } |
2912 | }; | 2912 | }; |
2913 | 2913 | ||
2914 | static bool svm_gb_page_enable(void) | 2914 | static int svm_get_lpage_level(void) |
2915 | { | 2915 | { |
2916 | return true; | 2916 | return PT_PDPE_LEVEL; |
2917 | } | 2917 | } |
2918 | 2918 | ||
2919 | static bool svm_rdtscp_supported(void) | 2919 | static bool svm_rdtscp_supported(void) |
@@ -2986,7 +2986,7 @@ static struct kvm_x86_ops svm_x86_ops = { | |||
2986 | .get_mt_mask = svm_get_mt_mask, | 2986 | .get_mt_mask = svm_get_mt_mask, |
2987 | 2987 | ||
2988 | .exit_reasons_str = svm_exit_reasons_str, | 2988 | .exit_reasons_str = svm_exit_reasons_str, |
2989 | .gb_page_enable = svm_gb_page_enable, | 2989 | .get_lpage_level = svm_get_lpage_level, |
2990 | 2990 | ||
2991 | .cpuid_update = svm_cpuid_update, | 2991 | .cpuid_update = svm_cpuid_update, |
2992 | 2992 | ||