qemu-stable
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-stable] [PATCH 1/1] allow to enable all tracepoints via alias


From: Denis V. Lunev
Subject: Re: [Qemu-stable] [PATCH 1/1] allow to enable all tracepoints via alias all
Date: Tue, 3 Nov 2015 20:02:42 +0300
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0

On 11/03/2015 07:52 PM, Denis V. Lunev wrote:
From: Olga Krishtal <address@hidden>

This will produce a lot of noise but could be usefull when we do this
for a shot perioud of time on customer side to examine unclear problem.

Signed-off-by: Olga Krishtal <address@hidden>
Signed-off-by: Denis V. Lunev <address@hidden>
CC: Paolo Bonzini <address@hidden>
CC: Stefan Hajnoczi <address@hidden>
---
  trace/control.c | 3 +++
  1 file changed, 3 insertions(+)

diff --git a/trace/control.c b/trace/control.c
index 9a1e381..75085f6 100644
--- a/trace/control.c
+++ b/trace/control.c
@@ -35,6 +35,9 @@ TraceEvent *trace_event_name(const char *name)
static bool pattern_glob(const char *pat, const char *ev)
  {
+    if (!(g_strcmp0(pat, "all"))) {
+        return true;
+    }
      while (*pat != '\0' && *ev != '\0') {
          if (*pat == *ev) {
              pat++;
sorry, wrong list. Will resend.

Den

P.S. It looks like I am a bit tired today after all.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]