From: Christoph Hellwig <hch@infradead.org>
To: David Smith <dsmith@redhat.com>
Cc: Christoph Hellwig <hch@infradead.org>,
linux-kernel@vger.kernel.org, rusty@rustcorp.com.au,
prasanna@in.ibm.com, ananth@in.ibm.com,
anil.s.keshavamurthy@intel.com, davem@davemloft.net
Subject: Re: [PATCH] module interface improvement for kprobes
Date: Sat, 5 Aug 2006 12:35:38 +0100 [thread overview]
Message-ID: <20060805113538.GA21135@infradead.org> (raw)
In-Reply-To: <1154716239.15967.22.camel@dhcp-2.hsv.redhat.com>
On Fri, Aug 04, 2006 at 01:30:39PM -0500, David Smith wrote:
> Why shouldn't I put a probe into a module other than at a symbol I can
> find with kallsyms? For example, I'm interested when a particular
> module hits an error condition that occurs. I don't want to probe how
> many times the function gets called - just when the error condition
> occurs.
How do you find that offset? You'll probably mention the S-Word but
we really want something that works with the latest kernel, not just
the vendor trees.
> With the existing interface, if I use kallsysms to find the value of a
> symbol, the module can be unloaded between the time I use kallsyms and
> register the kprobe. The patch I included fixes that race condition by
> incrementing the module reference count.
Yes, and that's a good thing. But the interface for doing it is wrong.
You don't really want the users to do all that by itself. For the typical
case of putting a probe at the usual points you want an interface that
puts in the probe given a name and does the right thing for you. For example
the interface I proposed in my last mail. Adding another field to struct
kprobe to specify an offset into the symbol would be the logical extension
of that.
> Your example works for a very small number of symbols, but with a large
> number it could take a long time to register the kprobes. Plus, that
> would need to be done every time the kprobe was registered. With my
> patch, the symbol lookup can be done once, then all those symbols can be
> turned into offsets from the base address of the module.
Registering a kprobe is everything but a fastpath, and you definitly should
not have a lot of probes anyway. It's far more worthwhile to have a sane
interface that the user can't get wrong then a small speedup in something
that's not a fastpath. I think Rusty even has a paper or talk about why
this is absolutely nessecary :)
next prev parent reply other threads:[~2006-08-05 11:35 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-08-04 15:17 [PATCH] module interface improvement for kprobes David Smith
2006-08-04 15:57 ` Christoph Hellwig
2006-08-04 18:30 ` David Smith
2006-08-05 11:35 ` Christoph Hellwig [this message]
2006-08-05 21:10 ` Frank Ch. Eigler
2006-08-07 4:52 ` Ananth N Mavinakayanahalli
2006-08-07 5:05 ` Ananth N Mavinakayanahalli
2006-08-08 15:39 ` David Smith
2006-08-04 16:00 ` Randy.Dunlap
2006-08-04 19:51 ` David Smith
2006-08-05 2:28 ` Rusty Russell
-- strict thread matches above, loose matches on Subject: below --
2006-08-04 23:00 Chuck Ebbert
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=20060805113538.GA21135@infradead.org \
--to=hch@infradead.org \
--cc=ananth@in.ibm.com \
--cc=anil.s.keshavamurthy@intel.com \
--cc=davem@davemloft.net \
--cc=dsmith@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=prasanna@in.ibm.com \
--cc=rusty@rustcorp.com.au \
/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