aboutsummaryrefslogtreecommitdiffstats
path: root/virt/kvm/kvm_main.c
diff options
context:
space:
mode:
authorLai Jiangshan <laijs@cn.fujitsu.com>2010-06-02 05:01:23 -0400
committerAvi Kivity <avi@redhat.com>2010-08-01 03:39:25 -0400
commit3bd89007ab4243b36bc30f5fc4aa8b4f75ff8fc2 (patch)
tree767e81b4cbb763a4477e26ef331ffe4e3ffaeaba /virt/kvm/kvm_main.c
parent4bc9b9828150747386130ab172f7e868e1a0fc2a (diff)
KVM: cleanup "*new.rmap" type
The type of '*new.rmap' is not 'struct page *', fix it Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'virt/kvm/kvm_main.c')
-rw-r--r--virt/kvm/kvm_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c
index 4a71faa96dfd..78ed71ad6aa1 100644
--- a/virt/kvm/kvm_main.c
+++ b/virt/kvm/kvm_main.c
@@ -600,7 +600,7 @@ int __kvm_set_memory_region(struct kvm *kvm,
600 /* Allocate if a slot is being created */ 600 /* Allocate if a slot is being created */
601#ifndef CONFIG_S390 601#ifndef CONFIG_S390
602 if (npages && !new.rmap) { 602 if (npages && !new.rmap) {
603 new.rmap = vmalloc(npages * sizeof(struct page *)); 603 new.rmap = vmalloc(npages * sizeof(*new.rmap));
604 604
605 if (!new.rmap) 605 if (!new.rmap)
606 goto out_free; 606 goto out_free;