All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] trace: Allow events without arguments
@ 2016-08-26  9:12 Lluís Vilanova
  2016-09-05 17:49 ` Stefan Hajnoczi
  0 siblings, 1 reply; 4+ messages in thread
From: Lluís Vilanova @ 2016-08-26  9:12 UTC (permalink / raw)
  To: qemu-devel; +Cc: Stefan Hajnoczi

Signed-off-by: Lluís Vilanova <vilanova@ac.upc.edu>
---
 scripts/tracetool/__init__.py |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/scripts/tracetool/__init__.py b/scripts/tracetool/__init__.py
index be24039..96657e6 100644
--- a/scripts/tracetool/__init__.py
+++ b/scripts/tracetool/__init__.py
@@ -72,6 +72,11 @@ class Arguments:
         arg_str : str
             String describing the event arguments.
         """
+        # check for empty argument list
+        arg_str = arg_str.strip()
+        if arg_str == "":
+            return Arguments([])
+
         res = []
         for arg in arg_str.split(","):
             arg = arg.strip()

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-09-13 15:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-26  9:12 [Qemu-devel] [PATCH] trace: Allow events without arguments Lluís Vilanova
2016-09-05 17:49 ` Stefan Hajnoczi
2016-09-06  8:47   ` Lluís Vilanova
2016-09-13 15:40     ` Stefan Hajnoczi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.