From mboxrd@z Thu Jan 1 00:00:00 1970 From: Li Zefan Subject: Re: [PATCH -tip -v11 11/11] tracing: Add kprobes event profiling interface Date: Fri, 10 Jul 2009 14:46:48 +0800 Message-ID: <4A56E3D8.3010806@cn.fujitsu.com> References: <20090709202220.13223.97114.stgit@localhost.localdomain> <20090709202327.13223.16418.stgit@localhost.localdomain> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Cc: Ingo Molnar , Steven Rostedt , lkml , systemtap , kvm , DLE , Ananth N Mavinakayanahalli , Christoph Hellwig , Frederic Weisbecker , Tom Zanussi To: Masami Hiramatsu Return-path: In-Reply-To: <20090709202327.13223.16418.stgit@localhost.localdomain> List-Unsubscribe: List-Subscribe: List-Post: List-Help: , Sender: systemtap-owner@sourceware.org List-Id: kvm.vger.kernel.org > +Event Profiling > +--------------- > + You can check the total number of probe hits and probe miss-hits via > +/sys/kernel/debug/tracing/kprobe_profile. > + The fist column is event name, the second is the number of probe hits, s/fist/first > +the third is the number of probe miss-hits. > + > + ... > +/* Probes profiling interfaces */ > +static int profile_seq_show(struct seq_file *m, void *v) > +{ > + struct trace_probe *tp = v; > + > + if (tp == NULL) > + return 0; > + tp will never be NULL, which is guaranteed by seq_file > + seq_printf(m, "%s", tp->call.name); > + > + seq_printf(m, "\t%8lu %8lu\n", tp->nhits, > + probe_is_return(tp) ? tp->rp.kp.nmissed : tp->kp.nmissed); > + > + return 0; > +}