Re: [Qemu-devel] [PATCH v2] Block migration: fix return value

2014-12-09 Thread Stefan Hajnoczi
On Tue, Nov 25, 2014 at 05:30:02PM -0600, grhookatw...@gmail.com wrote: > From: Gary R Hook > > Modify block_save_iterate() to return positive/zero/negative > (success/not done/failure) return status. The computation of > the blocks transferred (an int64_t) exceeds the size of an > int return val

Re: [Qemu-devel] [PATCH v2] Block migration: fix return value

2014-11-27 Thread Stefan Hajnoczi
On Tue, Nov 25, 2014 at 05:30:02PM -0600, grhookatw...@gmail.com wrote: > From: Gary R Hook > > Modify block_save_iterate() to return positive/zero/negative > (success/not done/failure) return status. The computation of > the blocks transferred (an int64_t) exceeds the size of an > int return val

Re: [Qemu-devel] [PATCH v2] Block migration: fix return value

2014-11-25 Thread ChenLiang
On 2014/11/26 7:30, grhookatw...@gmail.com wrote: > From: Gary R Hook > > Modify block_save_iterate() to return positive/zero/negative > (success/not done/failure) return status. The computation of > the blocks transferred (an int64_t) exceeds the size of an > int return value. > > Signed-off-b