From: Ingo Molnar <mingo@elte.hu>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: Frederic Weisbecker <fweisbec@gmail.com>,
Linux Kernel <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] tracing/function-return-tracer: don't trace kfree while it frees the return stack
Date: Sun, 23 Nov 2008 20:35:54 +0100 [thread overview]
Message-ID: <20081123193554.GC2794@elte.hu> (raw)
In-Reply-To: <alpine.DEB.1.10.0811231237470.13888@gandalf.stny.rr.com>
* Steven Rostedt <rostedt@goodmis.org> wrote:
>
> On Sun, 23 Nov 2008, Ingo Molnar wrote:
> > >
> > > diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c
> > > index 90d99fb..ffff7ec 100644
> > > --- a/kernel/trace/ftrace.c
> > > +++ b/kernel/trace/ftrace.c
> > > @@ -1628,8 +1628,9 @@ void ftrace_retfunc_init_task(struct task_struct *t)
> > >
> > > void ftrace_retfunc_exit_task(struct task_struct *t)
> > > {
> > > - kfree(t->ret_stack);
> > > + struct ftrace_ret_stack *ret_stack = t->ret_stack;
> > > t->ret_stack = NULL;
> > > + kfree(ret_stack);
> >
> > heh, nice one :)
> >
> > note that we also need to keep gcc from reordering things here (no
> > matter how unlikely in this particular case).
>
> I first thought that too, but thinking about it, if gcc does do that, then
> it will break the logic for a correct C program.
>
> t is passed in as a pointer, then it modifies the contents of t
> (which could be a global pointer), then it calls a external
> function, that might also reference the global pointer.
>
> This means that if it were to reorder the two, it would break C,
> because the compiler can not assume that the called function will
> read the global pointer either.
>
> In other words, the compiler should not need to worry about SMP or
> modifications done by interrupts or other threads. But the compiler
> should always preserve the order that is assumed by a single
> context.
Correct, but this assumes that kfree is a C function. Which it might
not necessarily be: it could be optimized via an inline in certain
cases, etc. It's best to document such cases explicitly.
In any case, the real solution is what i suggested in the previous
mail, to do the freeing from the task-struct freeing path in
kernel/fork.c:free_task() - that has other advantages as well.
Ingo
next prev parent reply other threads:[~2008-11-23 19:36 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-11-23 16:33 [PATCH] tracing/function-return-tracer: don't trace kfree while it frees the return stack Frederic Weisbecker
2008-11-23 16:40 ` Ingo Molnar
2008-11-23 16:44 ` Ingo Molnar
2008-11-23 17:43 ` Frederic Weisbecker
2008-11-23 19:24 ` Steven Rostedt
2008-11-23 19:35 ` Ingo Molnar [this message]
2008-11-23 19:48 ` Steven Rostedt
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=20081123193554.GC2794@elte.hu \
--to=mingo@elte.hu \
--cc=fweisbec@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--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 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.