From: Thomas Gleixner <tglx@linutronix.de>
To: Xiao Guangrong <xiaoguangrong@cn.fujitsu.com>
Cc: mingo@elte.hu, LKML <linux-kernel@vger.kernel.org>,
Zhaolei <zhaolei@cn.fujitsu.com>,
kosaki.motohiro@jp.fujitsu.com,
Steven Rostedt <rostedt@goodmis.org>,
fweisbec@gmail.com
Subject: Re: [PATCH 1/3] ftrace: add tracepoint for timer
Date: Wed, 27 May 2009 12:10:58 +0200 (CEST) [thread overview]
Message-ID: <alpine.LFD.2.00.0905271202260.3397@localhost.localdomain> (raw)
In-Reply-To: <4A1CED66.7030805@cn.fujitsu.com>
On Wed, 27 May 2009, Xiao Guangrong wrote:
> >> + TP_printk("timer=%p func=%pf expires=%lu cpu=%d", __entry->timer,
> >> + __entry->function, __entry->expires, __entry->cpu)
> >> +);
> >
> > How do we connect the trace to the jiffies value when the timer
> > was started ?
> >
>
> ftrace already have time information in trace event's output, we can use it instead
Hmm, I'm not sure whether we can see the jiffies value there, but ok.
> >> @@ -547,6 +550,7 @@ void init_timer_key(struct timer_list *timer,
> >> {
> >> debug_timer_init(timer);
> >> __init_timer(timer, name, key);
> >> + trace_timer_init(timer);
> >
> > Can we please avoid to have two debug calls in one 2 line function ?
> >
>
> debug_timer_init() must call before object's init, but tracepoint have to call
> after object's init beacuse if we move the tracepoint to before object init, the
> object has no data yet.
Err.
> >> + TRACE_EVENT(timer_init,
> >> +
> >> + TP_PROTO(struct timer_list *timer),
> >> +
> >> + TP_ARGS(timer),
> >> +
> >> + TP_STRUCT__entry(
> >> + __field( void *, timer )
> >> + ),
> >> +
> >> + TP_fast_assign(
> >> + __entry->timer = timer;
> >> + ),
> >> +
> >> + TP_printk("timer=%p", __entry->timer)
> >> +);
Is timer different before and after the __init_timer call ?
> >> }
> >> EXPORT_SYMBOL(init_timer_key);
> >>
> >> @@ -565,6 +569,7 @@ static inline void detach_timer(struct timer_list *timer,
> >> struct list_head *entry = &timer->entry;
> >>
> >> debug_timer_deactivate(timer);
> >> + trace_timer_cancel(timer);
> >
> > Ditto. Please create one debug entity which covers both.
> >
>
> IMHO, we can't create one entity for init event, so we do better detach other event.
See above.
Thanks,
tglx
next prev parent reply other threads:[~2009-05-27 10:11 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-05-22 9:53 Xiao Guangrong
2009-05-26 21:40 ` Thomas Gleixner
2009-05-27 7:36 ` Xiao Guangrong
2009-05-27 10:10 ` Thomas Gleixner [this message]
2009-05-29 2:00 ` Zhaolei
2009-05-29 9:55 ` Thomas Gleixner
2009-06-01 9:08 ` Zhaolei
2009-06-03 2:52 ` Xiao Guangrong
2009-06-03 16:39 ` Thomas Gleixner
2009-06-04 5:38 ` Xiao Guangrong
2009-06-04 8:44 ` Thomas Gleixner
2009-06-10 9:42 ` Xiao Guangrong
2009-06-10 10:58 ` Thomas Gleixner
2009-06-03 2:50 ` Xiao Guangrong
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=alpine.LFD.2.00.0905271202260.3397@localhost.localdomain \
--to=tglx@linutronix.de \
--cc=fweisbec@gmail.com \
--cc=kosaki.motohiro@jp.fujitsu.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=rostedt@goodmis.org \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®