Re: [PATCH v5 03/12] python/machine.py: Add _early_cleanup hook

2020-07-13 Thread Cleber Rosa
On Fri, Jul 10, 2020 at 01:06:40AM -0400, John Snow wrote: > Some parts of cleanup need to occur prior to shutdown, otherwise > shutdown might break. Move this into a suitably named method/callback. > > Signed-off-by: John Snow > --- > python/qemu/machine.py | 24 +++- > 1 fi

Re: [PATCH v5 03/12] python/machine.py: Add _early_cleanup hook

2020-07-13 Thread Philippe Mathieu-Daudé
On 7/10/20 7:06 AM, John Snow wrote: > Some parts of cleanup need to occur prior to shutdown, otherwise > shutdown might break. Move this into a suitably named method/callback. > > Signed-off-by: John Snow > --- > python/qemu/machine.py | 24 +++- > 1 file changed, 15 inserti

[PATCH v5 03/12] python/machine.py: Add _early_cleanup hook

2020-07-09 Thread John Snow
Some parts of cleanup need to occur prior to shutdown, otherwise shutdown might break. Move this into a suitably named method/callback. Signed-off-by: John Snow --- python/qemu/machine.py | 24 +++- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/python/qemu/ma