From: Amador Pahim <apahim@redhat.com>
To: qemu-devel@nongnu.org
Cc: famz@redhat.com, berrange@redhat.com, ehabkost@redhat.com,
mreitz@redhat.com, kwolf@redhat.com, armbru@redhat.com,
crosa@redhat.com, ldoktor@redhat.com,
Amador Pahim <apahim@redhat.com>
Subject: [Qemu-devel] [PATCH v3 1/3] qemu.py: fix is_running()
Date: Thu, 20 Jul 2017 11:19:00 +0200 [thread overview]
Message-ID: <20170720091902.22476-2-apahim@redhat.com> (raw)
In-Reply-To: <20170720091902.22476-1-apahim@redhat.com>
Current implementation is broken. It does not really test if the child
process is running.
The Popen.returncode will only be set after by a poll(), wait() or
communicate(). If the Popen fails to launch a VM, the Popen.returncode
will not turn to None by itself.
Instead of using Popen.returncode, let's use Popen.poll(), which
actually checks if child process has terminated.
Signed-off-by: Amador Pahim <apahim@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Fam Zheng <famz@redhat.com>
---
scripts/qemu.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/qemu.py b/scripts/qemu.py
index 880e3e8219..f0fade32bd 100644
--- a/scripts/qemu.py
+++ b/scripts/qemu.py
@@ -86,7 +86,7 @@ class QEMUMachine(object):
raise
def is_running(self):
- return self._popen and (self._popen.returncode is None)
+ return self._popen and (self._popen.poll() is None)
def exitcode(self):
if self._popen is None:
--
2.13.3
next prev parent reply other threads:[~2017-07-20 9:20 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-20 9:18 [Qemu-devel] [PATCH v3 0/3] scripts/qemu.py small fixes Amador Pahim
2017-07-20 9:19 ` Amador Pahim [this message]
2017-07-20 11:49 ` [Qemu-devel] [PATCH v3 1/3] qemu.py: fix is_running() Markus Armbruster
2017-07-20 12:57 ` Amador Pahim
2017-07-20 15:09 ` Markus Armbruster
2017-07-20 15:46 ` Amador Pahim
2017-07-20 17:49 ` Eduardo Habkost
2017-07-20 20:14 ` Amador Pahim
2017-07-21 7:34 ` Lukáš Doktor
2017-07-20 9:19 ` [Qemu-devel] [PATCH v3 2/3] qemu.py: include debug information on launch error Amador Pahim
2017-07-20 11:58 ` Markus Armbruster
2017-07-20 13:14 ` Amador Pahim
2017-07-20 14:43 ` Eduardo Habkost
2017-07-20 15:51 ` Amador Pahim
2017-07-20 15:01 ` Markus Armbruster
2017-07-20 15:50 ` Amador Pahim
2017-07-20 9:19 ` [Qemu-devel] [PATCH v3 3/3] qemu.py: make 'args' public Amador Pahim
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=20170720091902.22476-2-apahim@redhat.com \
--to=apahim@redhat.com \
--cc=armbru@redhat.com \
--cc=berrange@redhat.com \
--cc=crosa@redhat.com \
--cc=ehabkost@redhat.com \
--cc=famz@redhat.com \
--cc=kwolf@redhat.com \
--cc=ldoktor@redhat.com \
--cc=mreitz@redhat.com \
--cc=qemu-devel@nongnu.org \
/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).