lkml.org 
[lkml]   [2014]   [Sep]   [26]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] trace-cmd: allow python tools to supress warning() and pr_stat()
Date
trace-cmd has a lot of built in warning() and pr_stat() output that is noisy
when you are using the python bindings. This patch provides overrides for these
two functions and the ability for python scripts to optionally turn them off.
With this patch I can silence all of these extraneous print messages from within
my python script.

Signed-off-by: Josef Bacik <jbacik@fb.com>
---
ctracecmd.i | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)

diff --git a/ctracecmd.i b/ctracecmd.i
index 3b80f01..e91d068 100644
--- a/ctracecmd.i
+++ b/ctracecmd.i
@@ -34,6 +34,36 @@ static int python_callback(struct trace_seq *s,
struct event_format *event,
void *context);

+static int skip_output = 0;
+
+static void py_supress_trace_output(void)
+{
+ skip_output = 1;
+}
+
+void pr_stat(const char *fmt, ...)
+{
+ va_list ap;
+
+ if (skip_output)
+ return;
+ va_start(ap, fmt);
+ __vpr_stat(fmt, ap);
+ va_end(ap);
+}
+
+void warning(const char *fmt, ...)
+{
+ va_list ap;
+
+ if (skip_output)
+ return;
+
+ va_start(ap, fmt);
+ __vwarning(fmt, ap);
+ va_end(ap);
+}
+
PyObject *convert_pevent(unsigned long pevent)
{
void *pev = (void *)pevent;
--
1.9.3


\
 
 \ /
  Last update: 2014-09-26 21:21    [W:0.034 / U:1.156 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site