Re: [PATCH v4 7/9] vfio/migration: Add VFIO migration pre-copy support

2023-05-30 Thread Avihai Horon
On 30/05/2023 13:17, Cédric Le Goater wrote: External email: Use caution opening links or attachments diff --git a/hw/vfio/trace-events b/hw/vfio/trace-events index 646e42fd27..548f9488a7 100644 --- a/hw/vfio/trace-events +++ b/hw/vfio/trace-events @@ -162,6 +162,8 @@ vfio_save_block(const c

Re: [PATCH v4 7/9] vfio/migration: Add VFIO migration pre-copy support

2023-05-30 Thread Cédric Le Goater
diff --git a/hw/vfio/trace-events b/hw/vfio/trace-events index 646e42fd27..548f9488a7 100644 --- a/hw/vfio/trace-events +++ b/hw/vfio/trace-events @@ -162,6 +162,8 @@ vfio_save_block(const char *name, int data_size) " (%s) data_size %d"   vfio_save_cleanup(const char *name) " (%s)"   vfio_save_co

Re: [PATCH v4 7/9] vfio/migration: Add VFIO migration pre-copy support

2023-05-30 Thread Avihai Horon
On 30/05/2023 12:28, Cédric Le Goater wrote: External email: Use caution opening links or attachments On 5/28/23 16:06, Avihai Horon wrote: Pre-copy support allows the VFIO device data to be transferred while the VM is running. This helps to accommodate VFIO devices that have a large amount

Re: [PATCH v4 7/9] vfio/migration: Add VFIO migration pre-copy support

2023-05-30 Thread Cédric Le Goater
On 5/28/23 16:06, Avihai Horon wrote: Pre-copy support allows the VFIO device data to be transferred while the VM is running. This helps to accommodate VFIO devices that have a large amount of data that needs to be transferred, and it can reduce migration downtime. Pre-copy support is optional i

[PATCH v4 7/9] vfio/migration: Add VFIO migration pre-copy support

2023-05-28 Thread Avihai Horon
Pre-copy support allows the VFIO device data to be transferred while the VM is running. This helps to accommodate VFIO devices that have a large amount of data that needs to be transferred, and it can reduce migration downtime. Pre-copy support is optional in VFIO migration protocol v2. Implement