virtio-pmem: Set DRIVER_OK status prior to creating pmem region
Update virtio-pmem to call virtio_device_ready prior to creating the pmem region. Otherwise, the guest may try to access the pmem region prior to the DRIVER_OK status being set. In the case of Hyper-V, the backing pmem file isn't mapped to the guest until the DRIVER_OK status is set. Therefore, attempts to access the pmem region can cause the guest to crash. Hyper-V could map the file earlier, for example at VM creation, but we didn't want to pay the mapping cost if the device is never used. Additionally, it felt weird to allow the guest to access the region prior to the device fully coming online. Signed-off-by: Taylor Stark <tstark@microsoft.com> Reviewed-by: Pankaj Gupta <pankaj.gupta@ionos.com> Link: https://lore.kernel.org/r/20210715223638.GA29649@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net Signed-off-by: Tyler Hicks <tyhicks@linux.microsoft.com>
This commit is contained in:
Родитель
19b50696f9
Коммит
9194f84de8
|
@ -91,6 +91,11 @@ static int virtio_pmem_probe(struct virtio_device *vdev)
|
|||
|
||||
dev_set_drvdata(&vdev->dev, vpmem->nvdimm_bus);
|
||||
|
||||
/* Online the device prior to creating a pmem region, to ensure that
|
||||
* the region is never touched while the device is offline.
|
||||
*/
|
||||
virtio_device_ready(vdev);
|
||||
|
||||
ndr_desc.res = &res;
|
||||
ndr_desc.numa_node = nid;
|
||||
ndr_desc.flush = async_pmem_flush;
|
||||
|
@ -105,6 +110,7 @@ static int virtio_pmem_probe(struct virtio_device *vdev)
|
|||
nd_region->provider_data = dev_to_virtio(nd_region->dev.parent->parent);
|
||||
return 0;
|
||||
out_nd:
|
||||
vdev->config->reset(vdev);
|
||||
nvdimm_bus_unregister(vpmem->nvdimm_bus);
|
||||
out_vq:
|
||||
vdev->config->del_vqs(vdev);
|
||||
|
|
Загрузка…
Ссылка в новой задаче