Re: [PATCH 02/18] migration/vmstate: Introduce vmstate_no_state_to_migrate

2020-08-05 Thread Dr. David Alan Gilbert
* Peter Maydell (peter.mayd...@linaro.org) wrote: > On Fri, 3 Jul 2020 at 21:19, Philippe Mathieu-Daudé wrote: > > > > Introduce a special state to indicate when an object doesn't > > have anything in its state to migrate. > > > > Suggested-by: Peter Maydell > > Signed-off-by: Philippe Mathieu-D

Re: [PATCH 02/18] migration/vmstate: Introduce vmstate_no_state_to_migrate

2020-07-09 Thread Peter Maydell
On Fri, 3 Jul 2020 at 21:19, Philippe Mathieu-Daudé wrote: > > Introduce a special state to indicate when an object doesn't > have anything in its state to migrate. > > Suggested-by: Peter Maydell > Signed-off-by: Philippe Mathieu-Daudé > --- > include/migration/vmstate.h | 1 + > migration/vms

[PATCH 02/18] migration/vmstate: Introduce vmstate_no_state_to_migrate

2020-07-03 Thread Philippe Mathieu-Daudé
Introduce a special state to indicate when an object doesn't have anything in its state to migrate. Suggested-by: Peter Maydell Signed-off-by: Philippe Mathieu-Daudé --- include/migration/vmstate.h | 1 + migration/vmstate.c | 7 +++ 2 files changed, 8 insertions(+) diff --git a/in