aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/kvm/mmu.c
diff options
context:
space:
mode:
authorAvi Kivity <avi@qumranet.com>2007-07-21 02:06:46 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-07-21 02:48:47 -0400
commitc4d198d5183ec7bbf8b53216cfc5ded7ebb0ec0c (patch)
tree7b86e7959f607f1f5015a498515392d8fa480f83 /drivers/kvm/mmu.c
parent5c4c1489b93c9dc51cc6e97fd73e325ce94983c0 (diff)
KVM: MMU: Fix cleaning up the shadow page allocation cache
__free_page() wants a struct page, not a virtual address. Signed-off-by: Avi Kivity <avi@qumranet.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/kvm/mmu.c')
-rw-r--r--drivers/kvm/mmu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/kvm/mmu.c b/drivers/kvm/mmu.c
index d99d2fe53dc..1a87ba9d515 100644
--- a/drivers/kvm/mmu.c
+++ b/drivers/kvm/mmu.c
@@ -244,7 +244,7 @@ static int mmu_topup_memory_cache_page(struct kvm_mmu_memory_cache *cache,
244static void mmu_free_memory_cache_page(struct kvm_mmu_memory_cache *mc) 244static void mmu_free_memory_cache_page(struct kvm_mmu_memory_cache *mc)
245{ 245{
246 while (mc->nobjs) 246 while (mc->nobjs)
247 __free_page(mc->objects[--mc->nobjs]); 247 free_page((unsigned long)mc->objects[--mc->nobjs]);
248} 248}
249 249
250static int __mmu_topup_memory_caches(struct kvm_vcpu *vcpu, gfp_t gfp_flags) 250static int __mmu_topup_memory_caches(struct kvm_vcpu *vcpu, gfp_t gfp_flags)