Re: [Qemu-devel] [PATCH] migration: not necessary to check ops again

2019-05-14 Thread Dr. David Alan Gilbert
* Wei Yang (richardw.y...@linux.intel.com) wrote: > During each iteration, se->ops is checked before each loop. So it is not > necessary to check it again and simplify the following check a little. > > Signed-off-by: Wei Yang Queued > --- > migration/savevm.c | 14 ++ > 1 file chan

Re: [Qemu-devel] [PATCH] migration: not necessary to check ops again

2019-03-29 Thread Dr. David Alan Gilbert
* Wei Yang (richardw.y...@linux.intel.com) wrote: > During each iteration, se->ops is checked before each loop. So it is not > necessary to check it again and simplify the following check a little. > > Signed-off-by: Wei Yang Reviewed-by: Dr. David Alan Gilbert > --- > migration/savevm.c | 14

[Qemu-devel] [PATCH] migration: not necessary to check ops again

2019-03-26 Thread Wei Yang
During each iteration, se->ops is checked before each loop. So it is not necessary to check it again and simplify the following check a little. Signed-off-by: Wei Yang --- migration/savevm.c | 14 ++ 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/migration/savevm.c b/m