Commit edefc710 authored by Nick Wang's avatar Nick Wang Committed by Martin Schwidefsky

s390/kvm: Change the virtual memory mapping location for Virtio devices

The current location for mapping Virtio devices does not take
into consideration of the standby memory. This causes the failure
of mapping standby memory since the location for the mapping is
already taken by the Virtio devices. To fix the problem, we move
the location to beyond the end of standby memory.
Signed-off-by: default avatarNick Wang <jfwang@us.ibm.com>
Reviewed-by: default avatarChristian Borntraeger <borntraeger@de.ibm.com>
parent 7b1e427d
...@@ -443,29 +443,30 @@ static int __init test_devices_support(unsigned long addr) ...@@ -443,29 +443,30 @@ static int __init test_devices_support(unsigned long addr)
} }
/* /*
* Init function for virtio * Init function for virtio
* devices are in a single page above top of "normal" mem * devices are in a single page above top of "normal" + standby mem
*/ */
static int __init kvm_devices_init(void) static int __init kvm_devices_init(void)
{ {
int rc; int rc;
unsigned long total_memory_size = sclp_get_rzm() * sclp_get_rnmax();
if (!MACHINE_IS_KVM) if (!MACHINE_IS_KVM)
return -ENODEV; return -ENODEV;
if (test_devices_support(real_memory_size) < 0) if (test_devices_support(total_memory_size) < 0)
return -ENODEV; return -ENODEV;
rc = vmem_add_mapping(real_memory_size, PAGE_SIZE); rc = vmem_add_mapping(total_memory_size, PAGE_SIZE);
if (rc) if (rc)
return rc; return rc;
kvm_devices = (void *) real_memory_size; kvm_devices = (void *) total_memory_size;
kvm_root = root_device_register("kvm_s390"); kvm_root = root_device_register("kvm_s390");
if (IS_ERR(kvm_root)) { if (IS_ERR(kvm_root)) {
rc = PTR_ERR(kvm_root); rc = PTR_ERR(kvm_root);
printk(KERN_ERR "Could not register kvm_s390 root device"); printk(KERN_ERR "Could not register kvm_s390 root device");
vmem_remove_mapping(real_memory_size, PAGE_SIZE); vmem_remove_mapping(total_memory_size, PAGE_SIZE);
return rc; return rc;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment