Re: [Qemu-devel] [PATCH 0/3] vhost-scsi: Support live migration

2019-03-27 Thread Nir Weiner
On 3/21/19 9:55 AM, Nir Weiner wrote: Originally migration was not possible with vhost-scsi because as part of migration, the source host target SCSI device state needs to be saved and loaded into the destination host target SCSI device. This cannot be done by QEMU. As this can be handled

[Qemu-devel] [PATCH 1/3] vhost-scsi: The vhost device should be stopped when the VM is not running

2019-03-21 Thread Nir Weiner
”) Reviewed-by: Bijan Mottahedeh Reviewed-by: Liran Alon Signed-off-by: Nir Weiner --- hw/scsi/vhost-scsi.c | 4 1 file changed, 4 insertions(+) diff --git a/hw/scsi/vhost-scsi.c b/hw/scsi/vhost-scsi.c index 61e2e57da9d5..ca42cff1b907 100644 --- a/hw/scsi/vhost-scsi.c +++ b/hw/scsi/vhost-scsi.

[Qemu-devel] [PATCH 3/3] vhost-scsi: Allow user to enable migration

2019-03-21 Thread Nir Weiner
orchestrator or by having shared-storage (i.e. iSCSI), there is no reason to limit the orchestrator from being able to explictly specify it wish to enable migration even when VM have a vhost-scsi device. Reviewed-by: Nir Weiner Reviewed-by: Bijan Mottahedeh Signed-off-by: Liran Alon --- hw/scsi/vhost

[Qemu-devel] [PATCH 0/3] vhost-scsi: Support live migration

2019-03-21 Thread Nir Weiner
shared-storage (i.e. iSCSI), there is no reason to limit the orchestrator from being able to explictly specify it wish to enable migration even when VM have a vhost-scsi device. Liran Alon (1): vhost-scsi: Allow user to enable migration Nir Weiner (2): vhost-scsi: The vhost device should

[Qemu-devel] [PATCH 2/3] vhost-scsi: Add vmstate descriptor

2019-03-21 Thread Nir Weiner
Mottahedeh Reviewed-by: Liran Alon Signed-off-by: Nir Weiner --- hw/scsi/vhost-scsi.c | 23 +++ 1 file changed, 23 insertions(+) diff --git a/hw/scsi/vhost-scsi.c b/hw/scsi/vhost-scsi.c index ca42cff1b907..eb0cf9e1312f 100644 --- a/hw/scsi/vhost-scsi.c +++ b/hw/scsi/vhost-scsi.c