* [Qemu-devel] [PATCH] qmp: Check for returned data from __json_read in get_events
@ 2014-02-24 5:45 Fam Zheng
2014-02-24 18:21 ` Stefan Hajnoczi
2014-02-28 18:36 ` Luiz Capitulino
0 siblings, 2 replies; 3+ messages in thread
From: Fam Zheng @ 2014-02-24 5:45 UTC (permalink / raw)
To: qemu-devel; +Cc: Kevin Wolf, Stefan Hajnoczi, Luiz Capitulino
When QEMU process aborts and socket is closed, qmp client will not
detect it. When this happens, some qemu-iotests scripts will enter an
endless loop waiting for qmp events.
It's better we raise an exception in qmp.py to catch this and make the
test script stop.
Signed-off-by: Fam Zheng <famz@redhat.com>
---
scripts/qmp/qmp.py | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/scripts/qmp/qmp.py b/scripts/qmp/qmp.py
index 5c97175..20b6ec7 100644
--- a/scripts/qmp/qmp.py
+++ b/scripts/qmp/qmp.py
@@ -171,7 +171,12 @@ class QEMUMonitorProtocol:
pass
self.__sock.setblocking(1)
if not self.__events and wait:
- self.__json_read(only_event=True)
+ ret = self.__json_read(only_event=True)
+ if ret == None:
+ # We are in blocking mode, if don't get anything, something
+ # went wrong
+ raise QMPConnectError("Error while reading from socket")
+
return self.__events
def clear_events(self):
--
1.9.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] qmp: Check for returned data from __json_read in get_events
2014-02-24 5:45 [Qemu-devel] [PATCH] qmp: Check for returned data from __json_read in get_events Fam Zheng
@ 2014-02-24 18:21 ` Stefan Hajnoczi
2014-02-28 18:36 ` Luiz Capitulino
1 sibling, 0 replies; 3+ messages in thread
From: Stefan Hajnoczi @ 2014-02-24 18:21 UTC (permalink / raw)
To: Fam Zheng; +Cc: Kevin Wolf, qemu-devel, Stefan Hajnoczi, Luiz Capitulino
On Mon, Feb 24, 2014 at 01:45:01PM +0800, Fam Zheng wrote:
> When QEMU process aborts and socket is closed, qmp client will not
> detect it. When this happens, some qemu-iotests scripts will enter an
> endless loop waiting for qmp events.
>
> It's better we raise an exception in qmp.py to catch this and make the
> test script stop.
>
> Signed-off-by: Fam Zheng <famz@redhat.com>
> ---
> scripts/qmp/qmp.py | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] qmp: Check for returned data from __json_read in get_events
2014-02-24 5:45 [Qemu-devel] [PATCH] qmp: Check for returned data from __json_read in get_events Fam Zheng
2014-02-24 18:21 ` Stefan Hajnoczi
@ 2014-02-28 18:36 ` Luiz Capitulino
1 sibling, 0 replies; 3+ messages in thread
From: Luiz Capitulino @ 2014-02-28 18:36 UTC (permalink / raw)
To: Fam Zheng; +Cc: Kevin Wolf, qemu-devel, Stefan Hajnoczi
On Mon, 24 Feb 2014 13:45:01 +0800
Fam Zheng <famz@redhat.com> wrote:
> When QEMU process aborts and socket is closed, qmp client will not
> detect it. When this happens, some qemu-iotests scripts will enter an
> endless loop waiting for qmp events.
>
> It's better we raise an exception in qmp.py to catch this and make the
> test script stop.
>
> Signed-off-by: Fam Zheng <famz@redhat.com>
Applied to the qmp branch, thanks.
> ---
> scripts/qmp/qmp.py | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/scripts/qmp/qmp.py b/scripts/qmp/qmp.py
> index 5c97175..20b6ec7 100644
> --- a/scripts/qmp/qmp.py
> +++ b/scripts/qmp/qmp.py
> @@ -171,7 +171,12 @@ class QEMUMonitorProtocol:
> pass
> self.__sock.setblocking(1)
> if not self.__events and wait:
> - self.__json_read(only_event=True)
> + ret = self.__json_read(only_event=True)
> + if ret == None:
> + # We are in blocking mode, if don't get anything, something
> + # went wrong
> + raise QMPConnectError("Error while reading from socket")
> +
> return self.__events
>
> def clear_events(self):
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-02-28 18:47 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-24 5:45 [Qemu-devel] [PATCH] qmp: Check for returned data from __json_read in get_events Fam Zheng
2014-02-24 18:21 ` Stefan Hajnoczi
2014-02-28 18:36 ` Luiz Capitulino
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).