- 论坛徽章:
- 0
|
- void kvm_mmu_change_mmu_pages(struct kvm *kvm, unsigned int kvm_nr_mmu_pages)
- {
- int used_pages;
- used_pages = kvm->arch.n_alloc_mmu_pages - kvm->arch.n_free_mmu_pages;
- used_pages = max(0, used_pages);
- /*
- * If we set the number of mmu pages to be smaller be than the
- * number of actived pages , we must to free some mmu pages before we
- * change the value
- */
- if (used_pages > kvm_nr_mmu_pages) {
- while (used_pages > kvm_nr_mmu_pages) {
- struct kvm_mmu_page *page;
- page = container_of(kvm->arch.active_mmu_pages.prev, struct kvm_mmu_page, link);
- - kvm_mmu_zap_page(kvm, page);
- - used_pages--;
- + //still dead loop?
- + used_pages -= kvm_mmu_zap_page(kvm, page);
- }
- kvm->arch.n_free_mmu_pages = 0;
- }
- else
- kvm->arch.n_free_mmu_pages += kvm_nr_mmu_pages - kvm->arch.n_alloc_mmu_pages;
- kvm->arch.n_alloc_mmu_pages = kvm_nr_mmu_pages;
- }
复制代码
[ 本帖最后由 rtable 于 2009-12-6 17:20 编辑 ] |
|