Re: [PATCH 1/4] qemu-file: Don't do IO after shutdown

2020-01-16 Thread Juan Quintela
Juan Quintela wrote: > "Dr. David Alan Gilbert" wrote: >> * Dr. David Alan Gilbert (dgilb...@redhat.com) wrote: >>> * Juan Quintela (quint...@redhat.com) wrote: >> >> diff --git a/migration/qemu-file.c b/migration/qemu-file.c >> index 1e5543a279..bbb2b63927 100644 >> --- a/migration/qemu-file.c

Re: [PATCH 1/4] qemu-file: Don't do IO after shutdown

2020-01-08 Thread Juan Quintela
"Dr. David Alan Gilbert" wrote: > * Dr. David Alan Gilbert (dgilb...@redhat.com) wrote: >> * Juan Quintela (quint...@redhat.com) wrote: >> > Be sure that we are not doing neither read/write after shutdown of the >> > QEMUFile. >> > >> > Signed-off-by: Juan Quintela >> > --- >> >

Re: [PATCH 1/4] qemu-file: Don't do IO after shutdown

2020-01-08 Thread Dr. David Alan Gilbert
* Dr. David Alan Gilbert (dgilb...@redhat.com) wrote: > * Juan Quintela (quint...@redhat.com) wrote: > > Be sure that we are not doing neither read/write after shutdown of the > > QEMUFile. > > > > Signed-off-by: Juan Quintela > > --- > > migration/qemu-file.c | 13 + > > 1 file

Re: [PATCH 1/4] qemu-file: Don't do IO after shutdown

2019-12-29 Thread Juan Quintela
"Dr. David Alan Gilbert" wrote: > * Juan Quintela (quint...@redhat.com) wrote: >> Be sure that we are not doing neither read/write after shutdown of the >> QEMUFile. >> >> Signed-off-by: Juan Quintela >> --- >> migration/qemu-file.c | 13 + >> 1 file changed, 13 insertions(+) >>

Re: [PATCH 1/4] qemu-file: Don't do IO after shutdown

2019-12-18 Thread Dr. David Alan Gilbert
* Juan Quintela (quint...@redhat.com) wrote: > "Dr. David Alan Gilbert" wrote: > > * Juan Quintela (quint...@redhat.com) wrote: > >> Be sure that we are not doing neither read/write after shutdown of the > >> QEMUFile. > >> > >> Signed-off-by: Juan Quintela > >> --- > >> migration/qemu-file.c

Re: [PATCH 1/4] qemu-file: Don't do IO after shutdown

2019-12-18 Thread Juan Quintela
"Dr. David Alan Gilbert" wrote: > * Juan Quintela (quint...@redhat.com) wrote: >> Be sure that we are not doing neither read/write after shutdown of the >> QEMUFile. >> >> Signed-off-by: Juan Quintela >> --- >> migration/qemu-file.c | 13 + >> 1 file changed, 13 insertions(+) >>

Re: [PATCH 1/4] qemu-file: Don't do IO after shutdown

2019-12-18 Thread Dr. David Alan Gilbert
* Juan Quintela (quint...@redhat.com) wrote: > Be sure that we are not doing neither read/write after shutdown of the > QEMUFile. > > Signed-off-by: Juan Quintela > --- > migration/qemu-file.c | 13 + > 1 file changed, 13 insertions(+) > > diff --git a/migration/qemu-file.c

[PATCH 1/4] qemu-file: Don't do IO after shutdown

2019-12-17 Thread Juan Quintela
Be sure that we are not doing neither read/write after shutdown of the QEMUFile. Signed-off-by: Juan Quintela --- migration/qemu-file.c | 13 + 1 file changed, 13 insertions(+) diff --git a/migration/qemu-file.c b/migration/qemu-file.c index 26fb25ddc1..1e5543a279 100644 ---