From: Steven Rostedt <rostedt@goodmis.org>
To: linux-kernel@vger.kernel.org
Cc: Ingo Molnar <mingo@elte.hu>,
Andrew Morton <akpm@linux-foundation.org>,
Minchan Kim <minchan.kim@gmail.com>, Mel Gorman <mel@csn.ul.ie>,
Christoph Hellwig <hch@infradead.org>,
Rik van Riel <riel@redhat.com>,
Pekka Enberg <penberg@cs.helsinki.fi>,
Peter Zijlstra <peterz@infradead.org>,
Frederic Weisbecker <fweisbec@gmail.com>,
Theodore Tso <tytso@mit.edu>,
Mathieu Desnoyers <compudj@krystal.dyndns.org>,
Lai Jiangshan <laijs@cn.fujitsu.com>,
Zhaolei <zhaolei@cn.fujitsu.com>,
KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>,
Jason Baron <jbaron@redhat.com>,
Jiaying Zhang <jiayingz@google.com>,
Tom Zanussi <tzanussi@gmail.com>,
Xiao Guangrong <xiaoguangrong@cn.fujitsu.com>
Subject: [PATCH 10/11] tracing: update sample code with new tag format
Date: Wed, 10 Jun 2009 01:42:16 -0400 [thread overview]
Message-ID: <20090610054254.856179852@goodmis.org> (raw)
In-Reply-To: 20090610054206.510574695@goodmis.org
[-- Attachment #1: 0010-tracing-update-sample-code-with-new-tag-format.patch --]
[-- Type: text/plain, Size: 4225 bytes --]
From: Steven Rostedt <srostedt@redhat.com>
This patch adds examples of all the new tags in the
samples/trace_events/ example code.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
---
samples/trace_events/trace-events-sample.c | 21 ++++++++-
samples/trace_events/trace-events-sample.h | 66 ++++++++++++++++++++++++++++
2 files changed, 85 insertions(+), 2 deletions(-)
diff --git a/samples/trace_events/trace-events-sample.c b/samples/trace_events/trace-events-sample.c
index aabc4e9..dea8eb3 100644
--- a/samples/trace_events/trace-events-sample.c
+++ b/samples/trace_events/trace-events-sample.c
@@ -10,12 +10,31 @@
#define CREATE_TRACE_POINTS
#include "trace-events-sample.h"
+static struct task_struct *simple_tsk;
static void simple_thread_func(int cnt)
{
+ static int mask;
+ static int myif;
+
set_current_state(TASK_INTERRUPTIBLE);
schedule_timeout(HZ);
trace_foo_bar("hello", cnt);
+ trace_format_examples(jiffies,
+ jiffies * 2,
+ "a string here",
+ &simple_tsk,
+ mask, mask, simple_thread_func,
+ myif, myif, cpu_clock(raw_smp_processor_id()),
+ 123456);
+ if (!myif)
+ myif = 3;
+
+ if (!mask)
+ mask = 5;
+
+ mask <<= mask;
+ myif <<= myif;
}
static int simple_thread(void *arg)
@@ -28,8 +47,6 @@ static int simple_thread(void *arg)
return 0;
}
-static struct task_struct *simple_tsk;
-
static int __init trace_event_init(void)
{
simple_tsk = kthread_run(simple_thread, NULL, "event-sample");
diff --git a/samples/trace_events/trace-events-sample.h b/samples/trace_events/trace-events-sample.h
index 128a897..08b4768 100644
--- a/samples/trace_events/trace-events-sample.h
+++ b/samples/trace_events/trace-events-sample.h
@@ -65,6 +65,11 @@
* Note, that for both the assign and the printk, __entry is the handler
* to the data structure in the ring buffer, and is defined by the
* TP_STRUCT__entry.
+ *
+ * Note it is better to now use the tag format. Examples are in the event
+ * below, and the explanation of the tag format language is in:
+ *
+ * kernel/trace/trace_read_binary.h
*/
TRACE_EVENT(foo_bar,
@@ -84,6 +89,67 @@ TRACE_EVENT(foo_bar,
TP_printk("foo %s %d", __entry->foo, __entry->bar)
);
+
+/*
+ * These are a few examples of the tag format to do the output.
+ */
+TRACE_EVENT(format_examples,
+
+ TP_PROTO(int myint, long mylong, char *mystr, void *myptr,
+ unsigned long mask, unsigned sym, void *func,
+ int myif, int myifmask, unsigned long long nsec,
+ int dev),
+
+ TP_ARGS(myint, mylong, mystr, myptr, mask, sym, func,
+ myif, myifmask, nsec, dev),
+
+ TP_STRUCT__entry(
+ __field( int, myint )
+ __field( long, mylong )
+ __string(str, mystr)
+ __array( char, str_arr, 20 )
+ __field( void *, func )
+ __field( int, myif )
+ __field( unsigned long, mask )
+ __field( unsigned long, sym )
+ __field( int, myifmask )
+ __field( int, dev )
+ __field( unsigned long long, nsec )
+ ),
+
+ TP_fast_assign(
+ __entry->myint = myint;
+ __entry->mylong = mylong;
+ __assign_str(str, mystr);
+ strncpy(__entry->str_arr, mystr, 19);
+ __entry->str_arr[19] = 0;
+ __entry->mask = mask;
+ __entry->sym = sym;
+ __entry->func = func;
+ __entry->myif = myif;
+ __entry->myifmask = myifmask;
+ __entry->dev = dev;
+ __entry->nsec = nsec;
+ ),
+
+ TP_FORMAT("to see a normal int <int:myint> \n"
+ "or perhaps make it unsigned <uint:myint>\n"
+ "no difference for the size <int:mylong>\n"
+ "lets make it into a hex <hex:myint>\n"
+ "dynamic strings are simple <string:str>\n"
+ "and so are static ones <strarray:str_arr>\n"
+ "see a func and offset <symfunc:func>\n"
+ "or just the func name <func:func>\n"
+ "should we print <if:myif:this:that>\n"
+ "or base it on a bit mask <ifmask:myif:0xc:foo:bar>\n"
+ "we want to see that device <major:dev>,<minor:dev>\n"
+ "we can see masks <mask:mask:,:0=nothing,0xa=a,1=one,2=two>\n"
+ "or values of symbols <sym:sym:1=this,2=that,3=nevermind>\n"
+ "and know what time it is in seconds <nsec2sec:6:nsec> \n"
+ "millisecs <nsec2msec:6:nsec>\n"
+ "or microsecs <nsec2usec:3:nsec>")
+);
+
#endif
/***** NOTICE! The #if protection ends here. *****/
--
1.6.3.1
--
next prev parent reply other threads:[~2009-06-10 5:45 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-06-10 5:42 [PATCH 00/11] [GIT PULL] more updates for the tag format Steven Rostedt
2009-06-10 5:42 ` [PATCH 01/11] tracing/events: convert block trace points to TRACE_EVENT(), fix Steven Rostedt
2009-06-10 5:42 ` [PATCH 02/11] tracing: add nsec2sec print formats Steven Rostedt
2009-06-10 5:42 ` [PATCH 03/11] tracing: convert lockdep lock_acquired trace point to use nsec2usec tag Steven Rostedt
2009-06-10 5:42 ` [PATCH 04/11] tracing: add major and minor tags for print format Steven Rostedt
2009-06-10 5:42 ` [PATCH 05/11] tracing: use << to print < instead of \< Steven Rostedt
2009-06-10 5:42 ` [PATCH 06/11] tracing: convert the block trace points to use the new tag format Steven Rostedt
2009-06-10 5:42 ` [PATCH 07/11] tracing: add test for strings in event " Steven Rostedt
2009-06-10 5:42 ` [PATCH 08/11] tracing: add func and symfunc to " Steven Rostedt
2009-06-10 7:48 ` Frederic Weisbecker
2009-06-10 12:55 ` Steven Rostedt
2009-06-10 5:42 ` [PATCH 09/11] tracing: check full name for field Steven Rostedt
2009-06-10 5:42 ` Steven Rostedt [this message]
2009-06-10 5:42 ` [PATCH 11/11] tracing: move > to out of macros and into print statement Steven Rostedt
2009-06-10 9:26 ` [PATCH 00/11] [GIT PULL] more updates for the tag format Ingo Molnar
2009-06-10 11:11 ` Frédéric Weisbecker
2009-06-10 13:01 ` Theodore Tso
2009-06-10 13:49 ` Steven Rostedt
2009-06-10 14:39 ` Mathieu Desnoyers
2009-06-10 15:21 ` Steven Rostedt
2009-06-10 16:03 ` Theodore Tso
2009-06-10 16:17 ` Steven Rostedt
2009-06-11 13:03 ` Christoph Hellwig
2009-06-11 15:47 ` Theodore Tso
2009-06-11 17:14 ` Frederic Weisbecker
2009-06-11 19:20 ` Theodore Tso
2009-06-19 8:14 ` [BUG] bugs in jbd2_dev_to_name() (was Re: [PATCH 00/11] [GIT PULL] more updates for the tag format) Li Zefan
2009-06-19 12:32 ` Theodore Tso
2009-06-22 1:36 ` Li Zefan
2009-06-22 1:36 ` Li Zefan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090610054254.856179852@goodmis.org \
--to=rostedt@goodmis.org \
--cc=akpm@linux-foundation.org \
--cc=compudj@krystal.dyndns.org \
--cc=fweisbec@gmail.com \
--cc=hch@infradead.org \
--cc=jbaron@redhat.com \
--cc=jiayingz@google.com \
--cc=kosaki.motohiro@jp.fujitsu.com \
--cc=laijs@cn.fujitsu.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mel@csn.ul.ie \
--cc=minchan.kim@gmail.com \
--cc=mingo@elte.hu \
--cc=penberg@cs.helsinki.fi \
--cc=peterz@infradead.org \
--cc=riel@redhat.com \
--cc=tytso@mit.edu \
--cc=tzanussi@gmail.com \
--cc=xiaoguangrong@cn.fujitsu.com \
--cc=zhaolei@cn.fujitsu.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.