[Xen-devel] [PATCH] python: do not report handled EAGAIN error

Marek Marczykowski-Górecki posted 1 patch 4 years, 8 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/xen tags/patchew/20190820021241.30843-1-marmarek@invisiblethingslab.com
tools/python/xen/lowlevel/xs/xs.c | 1 +
1 file changed, 1 insertion(+)
[Xen-devel] [PATCH] python: do not report handled EAGAIN error
Posted by Marek Marczykowski-Górecki 4 years, 8 months ago
match_watch_by_token() when returns an error, sets also exception within
python. This is generally the right thing to do, but when
xspy_read_watch() handle EAGAIN error internally, the exception needs to
be cleared. Otherwise it will fail like this:

    xen.lowlevel.xs.Error: (11, 'Resource temporarily unavailable')

    The above exception was the direct cause of the following exception:

    Traceback (most recent call last):
      (...)
        result = self.handle.read_watch()
    SystemError: <method 'read_watch' of 'xen.lowlevel.xs.xs' objects> returned a result with an error set

Fixes f6e1023412 "python: Extract registered watch search logic from xspy_read_watch()"
Signed-off-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
---
 tools/python/xen/lowlevel/xs/xs.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/python/xen/lowlevel/xs/xs.c b/tools/python/xen/lowlevel/xs/xs.c
index ea50f86bc3..621039d7a7 100644
--- a/tools/python/xen/lowlevel/xs/xs.c
+++ b/tools/python/xen/lowlevel/xs/xs.c
@@ -531,6 +531,7 @@ again:
     free(xsval);
 
     if (!val && errno == EAGAIN) {
+        PyErr_Clear();
         goto again;
     }
 
-- 
2.20.1


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel
Re: [Xen-devel] [PATCH] python: do not report handled EAGAIN error
Posted by Wei Liu 4 years, 8 months ago
On Tue, Aug 20, 2019 at 04:12:41AM +0200, Marek Marczykowski-Górecki wrote:
> match_watch_by_token() when returns an error, sets also exception within
> python. This is generally the right thing to do, but when
> xspy_read_watch() handle EAGAIN error internally, the exception needs to
> be cleared. Otherwise it will fail like this:
> 
>     xen.lowlevel.xs.Error: (11, 'Resource temporarily unavailable')
> 
>     The above exception was the direct cause of the following exception:
> 
>     Traceback (most recent call last):
>       (...)
>         result = self.handle.read_watch()
>     SystemError: <method 'read_watch' of 'xen.lowlevel.xs.xs' objects> returned a result with an error set
> 
> Fixes f6e1023412 "python: Extract registered watch search logic from xspy_read_watch()"
> Signed-off-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>

Acked-by: Wei Liu <wl@xen.org>

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel