diff options
author | Jes Sorensen <Jes.Sorensen@redhat.com> | 2010-02-19 07:43:24 +0100 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2010-02-21 11:41:07 +0200 |
commit | 1be5c604407fe2cbfffa3444fc09bd42458a206f (patch) | |
tree | 0bc0747da034e48afb3c86669b7469db52dbeef1 /target-i386 | |
parent | 4ae849717a70603d39849ae74a9a1a6ee4398b95 (diff) | |
download | qemu-1be5c604407fe2cbfffa3444fc09bd42458a206f.tar.gz qemu-1be5c604407fe2cbfffa3444fc09bd42458a206f.tar.bz2 qemu-1be5c604407fe2cbfffa3444fc09bd42458a206f.zip |
kvm: Kill CR3_CACHE feature references
Remove all references to KVM_CR3_CACHE as it was never implemented.
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'target-i386')
-rw-r--r-- | target-i386/kvm.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/target-i386/kvm.c b/target-i386/kvm.c index 0d08cd532e..5d9aecc89d 100644 --- a/target-i386/kvm.c +++ b/target-i386/kvm.c @@ -158,9 +158,6 @@ struct kvm_para_features { #ifdef KVM_CAP_PV_MMU { KVM_CAP_PV_MMU, KVM_FEATURE_MMU_OP }, #endif -#ifdef KVM_CAP_CR3_CACHE - { KVM_CAP_CR3_CACHE, KVM_FEATURE_CR3_CACHE }, -#endif { -1, -1 } }; |