From: Thomas Huth <thuth@redhat.com>
To: qemu-devel@nongnu.org, "Daniel P. Berrangé" <berrange@redhat.com>
Cc: "Dr. David Alan Gilbert" <dgilbert@redhat.com>,
"Juan Quintela" <quintela@redhat.com>,
"Lukáš Doktor" <ldoktor@redhat.com>,
"Cornelia Huck" <cohuck@redhat.com>
Subject: [Qemu-devel] [PATCH] io/channel-command: Delay the killing of the child after closing the pipe
Date: Tue, 13 Feb 2018 15:14:39 +0100 [thread overview]
Message-ID: <1518531279-11966-1-git-send-email-thuth@redhat.com> (raw)
We are currently facing some migration failure on s390x when running
certain avocado tests, e.g. when running the test
type_specific.io-github-autotest-qemu.migrate.with_reboot.exec.gzip_exec.
This test is using 'migrate -d "exec:nc localhost 5200"' for the migration.
The problem is detected at the receiving side, where the migration stream
apparently ends too early. However, the cause for the problem is the
sending side: After writing the migration stream into the pipe to netcat,
the source QEMU calls qio_channel_command_close() which closes the pipe
and immediately (!) kills the child process afterwards. So if the
sending netcat did not read the final bytes from the pipe yet, or
if it did not manage to send out all its buffers yet, it is killed
before the whole migration stream is passed to the destination side.
To ease the situation at least a little bit, we should give the child
process at least some few more time slices before we kill it with
SIGTERM and then with SIGKILL. With this change, the avocado test now
succeeds here in 10 out of 10 runs.
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
io/channel-command.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/io/channel-command.c b/io/channel-command.c
index 319c5ed..f64db3e 100644
--- a/io/channel-command.c
+++ b/io/channel-command.c
@@ -177,11 +177,11 @@ static int qio_channel_command_abort(QIOChannelCommand *ioc,
return -1;
}
} else if (ret == 0) {
- if (step == 0) {
+ if (step == 4) {
kill(ioc->pid, SIGTERM);
- } else if (step == 1) {
+ } else if (step == 8) {
kill(ioc->pid, SIGKILL);
- } else {
+ } else if (step >= 9) {
error_setg(errp,
"Process %llu refused to die",
(unsigned long long)ioc->pid);
--
1.8.3.1
next reply other threads:[~2018-02-13 14:15 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-13 14:14 Thomas Huth [this message]
2018-02-13 14:23 ` [Qemu-devel] [PATCH] io/channel-command: Delay the killing of the child after closing the pipe Daniel P. Berrangé
2018-02-13 15:09 ` Dr. David Alan Gilbert
2018-02-13 15:11 ` Daniel P. Berrangé
2018-02-13 15:25 ` Dr. David Alan Gilbert
2018-02-13 15:27 ` Daniel P. Berrangé
2018-02-13 15:41 ` Dr. David Alan Gilbert
2018-02-13 15:45 ` Daniel P. Berrangé
2018-02-13 15:49 ` Dr. David Alan Gilbert
2018-02-13 15:58 ` Daniel P. Berrangé
2018-02-13 16:03 ` Dr. David Alan Gilbert
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1518531279-11966-1-git-send-email-thuth@redhat.com \
--to=thuth@redhat.com \
--cc=berrange@redhat.com \
--cc=cohuck@redhat.com \
--cc=dgilbert@redhat.com \
--cc=ldoktor@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=quintela@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).