|
@@ -715,6 +715,8 @@ int __kvm_set_memory_region(struct kvm *kvm,
|
|
goto out;
|
|
goto out;
|
|
if (mem->guest_phys_addr & (PAGE_SIZE - 1))
|
|
if (mem->guest_phys_addr & (PAGE_SIZE - 1))
|
|
goto out;
|
|
goto out;
|
|
|
|
+ if (mem->userspace_addr & (PAGE_SIZE - 1))
|
|
|
|
+ goto out;
|
|
if (mem->slot >= KVM_MEMORY_SLOTS + KVM_PRIVATE_MEM_SLOTS)
|
|
if (mem->slot >= KVM_MEMORY_SLOTS + KVM_PRIVATE_MEM_SLOTS)
|
|
goto out;
|
|
goto out;
|
|
if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
|
|
if (mem->guest_phys_addr + mem->memory_size < mem->guest_phys_addr)
|