public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Ingo Molnar <mingo@elte.hu>
To: Pekka Enberg <penberg@cs.helsinki.fi>
Cc: Frederic Weisbecker <fweisbec@gmail.com>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Steven Rostedt <rostedt@goodmis.org>,
	Eduard - Gabriel Munteanu <eduard.munteanu@linux360.ro>
Subject: Re: [PATCH] tracing/kmemtrace: normalize the raw tracer event to the unified tracing API
Date: Tue, 30 Dec 2008 09:16:00 +0100	[thread overview]
Message-ID: <20081230081600.GD2455@elte.hu> (raw)
In-Reply-To: <1230623364.6091.9.camel@penberg-laptop>


* Pekka Enberg <penberg@cs.helsinki.fi> wrote:

> Hi Frederic,
> 
> On Mon, 2008-12-29 at 23:09 +0100, Frederic Weisbecker wrote:
> > Pekka, note that I would be pleased to add statistical tracing on
> > this tracer, but I would need a hashtable, or an array, or a list, or whatever
> > iterable to insert the data into the stat tracing api.
> > 
> > But I don't know your projects about this... whether you wanted to use a section
> > or something else...
> 
> It really depends on what we're tracing. If we're interested in just the 
> allocation hotspots, a section will do just fine. However, if we're 
> tracing memory footprint, we need to take into store the object pointer 
> returned from kmalloc() and kmem_cache_alloc() so we can update 
> call-site statistics properly upon kfree().
> 
> So I suppose we need both, a section for per call-site statistics and a 
> hash table for the object -> call-site mapping.

1)

i think the call_site based tracking should be a built-in capability - the 
branch tracer needs that too for example. That would also make it very 
simple on the usage place: you wouldnt have to worry about sections in 
slub.c/etc.

2)

i think a possibly useful intermediate object would be the slab cache 
itself, which could be the basis for some highlevel stats too. It would 
probably overlap /proc/slabinfo statistics but it's a natural part of this 
abstraction i think.

3)

the most lowlevel (and hence most allocation-footprint sensitive) object 
to track would be the memory object itself. I think the best approach 
would be to do a static, limited size hash that could track up to N memory 
objects.

The advantage of such an approach is that it does not impact allocation 
patterns at all (besides the one-time allocation cost of the hash itself 
during tracer startup).

The disadvantage is when an overflow happens: the sizing heuristics would 
get the size correct most of the time anyway, so it's not a practical 
issue. There would be some sort of sizing control similar to 
/debug/tracing/buffer_size_kb, and a special trace entry that signals an 
'overflow' of the hash table. (in that case we wont track certain objects 
- but it would be clear from the trace output what happens and the hash 
size can be adjusted.)

Another advantage would be that it would trivially not interact with any 
allocator - because the hash itself would never 'allocate' in any dynamic 
way. Either there are free entries available (in which case we use it), or 
not - in which case we emit an hash-overflow trace entry.

And this too would be driven from ftrace mainly - the SLAB code would only 
offer the alloc+free callbacks with the object IDs. [ and this means that 
we could detect memory leaks by looking at the hash table and print out 
the age of entries :-) ]

How does this sound to you?

	Ingo

  parent reply	other threads:[~2008-12-30  8:16 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-12-29 21:42 [PATCH] tracing/kmemtrace: normalize the raw tracer event to the unified tracing API Frederic Weisbecker, Frederic Weisbecker
2008-12-29 21:46 ` Frederic Weisbecker
2008-12-29 22:09 ` Frederic Weisbecker
2008-12-29 22:13   ` Frederic Weisbecker
2008-12-30  7:49   ` Pekka Enberg
2008-12-30  8:01     ` Eduard - Gabriel Munteanu
2008-12-30  8:16     ` Ingo Molnar [this message]
2008-12-30  8:41       ` Eduard - Gabriel Munteanu
2008-12-30  8:47         ` Ingo Molnar
2008-12-30  9:01       ` Pekka Enberg
2008-12-30  9:11         ` Ingo Molnar
2008-12-30 14:16       ` Frederic Weisbecker
2008-12-30 15:37         ` Ingo Molnar
2008-12-30 21:09           ` Frederic Weisbecker
2008-12-30 14:32     ` Frederic Weisbecker
2008-12-30  8:00   ` Ingo Molnar
2008-12-30  7:34 ` Ingo Molnar
2008-12-30  7:45 ` Ingo Molnar
2009-01-05 16:48   ` Steven Rostedt
2009-01-05 23:50     ` Frederic Weisbecker

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=20081230081600.GD2455@elte.hu \
    --to=mingo@elte.hu \
    --cc=eduard.munteanu@linux360.ro \
    --cc=fweisbec@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=penberg@cs.helsinki.fi \
    --cc=rostedt@goodmis.org \
    /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