Re: [Qemu-devel] [PATCH 2/2] migration: extend migration_bitmap

2015-06-26 Thread Igor Mammedov
On Fri, 26 Jun 2015 17:15:58 +0800 Wen Congyang wrote: > On 06/26/2015 05:05 PM, Juan Quintela wrote: > > Li Zhijian wrote: > >> Prevously, if we hotplug a device(e.g. device_add e1000) during > >> migration is processing in source side, qemu will add a new ram > >> block but migration_bitmap is

Re: [Qemu-devel] [PATCH 2/2] migration: extend migration_bitmap

2015-06-26 Thread Li Zhijian
On 06/26/2015 05:05 PM, Juan Quintela wrote: Li Zhijian wrote: Prevously, if we hotplug a device(e.g. device_add e1000) during migration is processing in source side, qemu will add a new ram block but migration_bitmap is not extended. In this case, migration_bitmap will overflow and lead qemu a

Re: [Qemu-devel] [PATCH 2/2] migration: extend migration_bitmap

2015-06-26 Thread Wen Congyang
On 06/26/2015 05:05 PM, Juan Quintela wrote: > Li Zhijian wrote: >> Prevously, if we hotplug a device(e.g. device_add e1000) during >> migration is processing in source side, qemu will add a new ram >> block but migration_bitmap is not extended. >> In this case, migration_bitmap will overflow and

Re: [Qemu-devel] [PATCH 2/2] migration: extend migration_bitmap

2015-06-26 Thread Juan Quintela
Li Zhijian wrote: > Prevously, if we hotplug a device(e.g. device_add e1000) during > migration is processing in source side, qemu will add a new ram > block but migration_bitmap is not extended. > In this case, migration_bitmap will overflow and lead qemu abort > unexpectedly. > > Signed-off-by:

[Qemu-devel] [PATCH 2/2] migration: extend migration_bitmap

2015-06-26 Thread Li Zhijian
Prevously, if we hotplug a device(e.g. device_add e1000) during migration is processing in source side, qemu will add a new ram block but migration_bitmap is not extended. In this case, migration_bitmap will overflow and lead qemu abort unexpectedly. Signed-off-by: Li Zhijian Signed-off-by: Wen C