|
@@ -873,21 +873,6 @@ int __kvm_set_memory_region(struct kvm *kvm,
|
|
|
goto out_free;
|
|
|
}
|
|
|
|
|
|
- /*
|
|
|
- * IOMMU mapping: New slots need to be mapped. Old slots need to be
|
|
|
- * un-mapped and re-mapped if their base changes. Since base change
|
|
|
- * unmapping is handled above with slot deletion, mapping alone is
|
|
|
- * needed here. Anything else the iommu might care about for existing
|
|
|
- * slots (size changes, userspace addr changes and read-only flag
|
|
|
- * changes) is disallowed above, so any other attribute changes getting
|
|
|
- * here can be skipped.
|
|
|
- */
|
|
|
- if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
|
|
|
- r = kvm_iommu_map_pages(kvm, &new);
|
|
|
- if (r)
|
|
|
- goto out_slots;
|
|
|
- }
|
|
|
-
|
|
|
/* actual memory is freed via old in kvm_free_physmem_slot below */
|
|
|
if (change == KVM_MR_DELETE) {
|
|
|
new.dirty_bitmap = NULL;
|
|
@@ -901,6 +886,20 @@ int __kvm_set_memory_region(struct kvm *kvm,
|
|
|
kvm_free_physmem_slot(&old, &new);
|
|
|
kfree(old_memslots);
|
|
|
|
|
|
+ /*
|
|
|
+ * IOMMU mapping: New slots need to be mapped. Old slots need to be
|
|
|
+ * un-mapped and re-mapped if their base changes. Since base change
|
|
|
+ * unmapping is handled above with slot deletion, mapping alone is
|
|
|
+ * needed here. Anything else the iommu might care about for existing
|
|
|
+ * slots (size changes, userspace addr changes and read-only flag
|
|
|
+ * changes) is disallowed above, so any other attribute changes getting
|
|
|
+ * here can be skipped.
|
|
|
+ */
|
|
|
+ if ((change == KVM_MR_CREATE) || (change == KVM_MR_MOVE)) {
|
|
|
+ r = kvm_iommu_map_pages(kvm, &new);
|
|
|
+ return r;
|
|
|
+ }
|
|
|
+
|
|
|
return 0;
|
|
|
|
|
|
out_slots:
|