Re: [Qemu-devel] [PATCH 01/41] migration: simplify while loop

2013-02-21 Thread Juan Quintela
Paolo Bonzini wrote: > Unify the goto around the loop, with the exit condition at the end of it. > Both can be expressed as "while (ret >= 0)". > > Signed-off-by: Paolo Bonzini Reviewed-by: Juan Quintela

Re: [Qemu-devel] [PATCH 01/41] migration: simplify while loop

2013-02-18 Thread Orit Wasserman
On 02/15/2013 07:46 PM, Paolo Bonzini wrote: > Unify the goto around the loop, with the exit condition at the end of it. > Both can be expressed as "while (ret >= 0)". > > Signed-off-by: Paolo Bonzini > --- > migration.c | 11 +-- > 1 files changed, 1 insertions(+), 10 deletions(-) >

[Qemu-devel] [PATCH 01/41] migration: simplify while loop

2013-02-15 Thread Paolo Bonzini
Unify the goto around the loop, with the exit condition at the end of it. Both can be expressed as "while (ret >= 0)". Signed-off-by: Paolo Bonzini --- migration.c | 11 +-- 1 files changed, 1 insertions(+), 10 deletions(-) diff --git a/migration.c b/migration.c index b1ebb01..5414060