Re: [Qemu-devel] [PATCH RFC 3/4] Curling: the sender

2013-09-11 Thread junqing . wang
hi, >> +bool create = false; > >This variable is never set. It is set in the following 'if' block. +create = true;<<=== >> -migration_bitmap = bitmap_new(ram_pages); >> -bitmap_set(migration_bitmap, 0, ram_pages); >> -migration_dirty_pages = ram_pages; >> +i

[Qemu-devel] [PATCH RFC 3/4] Curling: the sender

2013-09-10 Thread Jules Wang
By leveraging live migration feature, the sender simply starts a new migration when the previous migration is completed. We need to handle the variables related to live migration very carefully. So the new migration does not restart from the very begin of the migration, instead, it continues the p

Re: [Qemu-devel] [PATCH RFC 3/4] Curling: the sender

2013-09-10 Thread Juan Quintela
Jules Wang wrote: > By leveraging live migration feature, the sender simply starts a > new migration when the previous migration is completed. > > We need to handle the variables related to live migration very > carefully. So the new migration does not restart from the very > begin of the migratio