aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ia64/kvm
diff options
context:
space:
mode:
authorTakuya Yoshikawa <yoshikawa_takuya_b1@lab.ntt.co.jp>2013-02-27 05:44:34 -0500
committerMarcelo Tosatti <mtosatti@redhat.com>2013-03-04 18:21:08 -0500
commit7b6195a91d60909a2834ab7181e2b9476e6fe749 (patch)
tree2a3713b45d77bb886e031be65f3ef5f576eeb300 /arch/ia64/kvm
parent74d0727cb7aaaea48a6353209093be26abc8d160 (diff)
KVM: set_memory_region: Refactor prepare_memory_region()
This patch drops the parameter old, a copy of the old memory slot, and adds a new parameter named change to know the change being requested. This not only cleans up the code but also removes extra copying of the memory slot structure. Signed-off-by: Takuya Yoshikawa <yoshikawa_takuya_b1@lab.ntt.co.jp> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'arch/ia64/kvm')
-rw-r--r--arch/ia64/kvm/kvm-ia64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/ia64/kvm/kvm-ia64.c b/arch/ia64/kvm/kvm-ia64.c
index 43701f0c0f71..5c2b07e8c3d6 100644
--- a/arch/ia64/kvm/kvm-ia64.c
+++ b/arch/ia64/kvm/kvm-ia64.c
@@ -1560,8 +1560,8 @@ int kvm_arch_create_memslot(struct kvm_memory_slot *slot, unsigned long npages)
1560 1560
1561int kvm_arch_prepare_memory_region(struct kvm *kvm, 1561int kvm_arch_prepare_memory_region(struct kvm *kvm,
1562 struct kvm_memory_slot *memslot, 1562 struct kvm_memory_slot *memslot,
1563 struct kvm_memory_slot old, 1563 struct kvm_userspace_memory_region *mem,
1564 struct kvm_userspace_memory_region *mem) 1564 enum kvm_mr_change change)
1565{ 1565{
1566 unsigned long i; 1566 unsigned long i;
1567 unsigned long pfn; 1567 unsigned long pfn;