summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorIzik Eidus <ieidus@redhat.com>2009-07-28 15:26:58 -0300
committerAvi Kivity <avi@redhat.com>2009-09-10 08:33:20 +0300
commit3b80fffe2b31fb716d3ebe729c54464ee7856723 (patch)
tree9607efd950f70c279dba1e78506bbe9e5bb369bc /arch
parent95fb4eb6981216c07ac01f598e61b273b6eff58c (diff)
downloadkernel-crypto-3b80fffe2b31fb716d3ebe729c54464ee7856723.tar.gz
kernel-crypto-3b80fffe2b31fb716d3ebe729c54464ee7856723.tar.xz
kernel-crypto-3b80fffe2b31fb716d3ebe729c54464ee7856723.zip
KVM: MMU: make __kvm_mmu_free_some_pages handle empty list
First check if the list is empty before attempting to look at list entries. Cc: stable@kernel.org Signed-off-by: Izik Eidus <ieidus@redhat.com> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com> Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/kvm/mmu.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c
index 1249c12e1d5..28be35c6ff1 100644
--- a/arch/x86/kvm/mmu.c
+++ b/arch/x86/kvm/mmu.c
@@ -2705,7 +2705,8 @@ EXPORT_SYMBOL_GPL(kvm_mmu_unprotect_page_virt);
void __kvm_mmu_free_some_pages(struct kvm_vcpu *vcpu)
{
- while (vcpu->kvm->arch.n_free_mmu_pages < KVM_REFILL_PAGES) {
+ while (vcpu->kvm->arch.n_free_mmu_pages < KVM_REFILL_PAGES &&
+ !list_empty(&vcpu->kvm->arch.active_mmu_pages)) {
struct kvm_mmu_page *sp;
sp = container_of(vcpu->kvm->arch.active_mmu_pages.prev,