Skip to content

Commit

Permalink
[PATCH] KVM: MMU: <ove is_empty_shadow_page() above kvm_mmu_free_page()
Browse files Browse the repository at this point in the history
Signed-off-by: Avi Kivity <avi@qumranet.com>
Acked-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Avi Kivity authored and Linus Torvalds committed Jan 6, 2007
1 parent 0e7bc4b commit 260746c
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions drivers/kvm/mmu.c
Original file line number Diff line number Diff line change
Expand Up @@ -303,16 +303,6 @@ static void rmap_write_protect(struct kvm *kvm, u64 gfn)
}
}

static void kvm_mmu_free_page(struct kvm_vcpu *vcpu, hpa_t page_hpa)
{
struct kvm_mmu_page *page_head = page_header(page_hpa);

list_del(&page_head->link);
page_head->page_hpa = page_hpa;
list_add(&page_head->link, &vcpu->free_pages);
++vcpu->kvm->n_free_mmu_pages;
}

static int is_empty_shadow_page(hpa_t page_hpa)
{
u32 *pos;
Expand All @@ -324,6 +314,16 @@ static int is_empty_shadow_page(hpa_t page_hpa)
return 1;
}

static void kvm_mmu_free_page(struct kvm_vcpu *vcpu, hpa_t page_hpa)
{
struct kvm_mmu_page *page_head = page_header(page_hpa);

list_del(&page_head->link);
page_head->page_hpa = page_hpa;
list_add(&page_head->link, &vcpu->free_pages);
++vcpu->kvm->n_free_mmu_pages;
}

static unsigned kvm_page_table_hashfn(gfn_t gfn)
{
return gfn;
Expand Down

0 comments on commit 260746c

Please sign in to comment.