From: Steven Rostedt <rostedt@goodmis.org>
To: mingo@redhat.com, hpa@zytor.com, linux-kernel@vger.kernel.org,
fweisbec@gmail.com, tglx@linutronix.de, mingo@elte.hu,
Johannes Berg <johannes@sipsolutions.net>,
Linus Torvalds <torvalds@linux-foundation.org>,
Greg KH <gregkh@suse.de>
Cc: linux-tip-commits@vger.kernel.org, stable@kernel.org
Subject: Re: [tip:tracing/syscalls] tracing/core: fix early free of cpumasks
Date: Wed, 1 Apr 2009 21:12:32 -0400 [thread overview]
Message-ID: <20090402011232.GA32066@goodmis.org> (raw)
In-Reply-To: <tip-2fc1dfbe17e7705c55b7a99da995fa565e26f151@git.kernel.org>
This never made it into 2.6.29, nor do I see it yet in mainline.
This can cause unpredictable results with ftrace. We are freeing a cpu mask
that will be later used.
This is definitely stable material.
Thanks to Johannes Berg for patiently bisecting his branch with a merge of my
branch to locate the patch that was missing from mainline.
He was seeing empty traces, but in reality, the changing of these masks might
have more dire consequences.
-- Steve
On Mon, Mar 16, 2009 at 08:19:33AM +0000, Frederic Weisbecker wrote:
> Commit-ID: 2fc1dfbe17e7705c55b7a99da995fa565e26f151
> Gitweb: http://git.kernel.org/tip/2fc1dfbe17e7705c55b7a99da995fa565e26f151
> Author: Frederic Weisbecker <fweisbec@gmail.com>
> AuthorDate: Mon, 16 Mar 2009 01:45:03 +0100
> Commit: Ingo Molnar <mingo@elte.hu>
> CommitDate: Mon, 16 Mar 2009 09:13:18 +0100
>
> tracing/core: fix early free of cpumasks
>
> Impact: fix crashes when tracing cpumasks
>
> While ring-buffer allocation, the cpumasks are allocated too,
> including the tracing cpumask and the per-cpu file mask handler.
> But these cpumasks are freed accidentally just after.
> Fix it.
>
> Reported-by: Ingo Molnar <mingo@elte.hu>
> Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
> LKML-Reference: <1237164303-11476-1-git-send-email-fweisbec@gmail.com>
> Signed-off-by: Ingo Molnar <mingo@elte.hu>
>
>
> ---
> kernel/trace/trace.c | 3 ++-
> 1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
> index c0cf946..ae32d3b 100644
> --- a/kernel/trace/trace.c
> +++ b/kernel/trace/trace.c
> @@ -4125,7 +4125,8 @@ __init static int tracer_alloc_buffers(void)
> &trace_panic_notifier);
>
> register_die_notifier(&trace_die_notifier);
> - ret = 0;
> +
> + return 0;
>
> out_free_cpumask:
> free_cpumask_var(tracing_reader_cpumask);
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
next prev parent reply other threads:[~2009-04-02 1:16 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-03-16 0:45 [PATCH] tracing/core: fix early free of cpumasks Frederic Weisbecker
2009-03-16 8:19 ` [tip:tracing/syscalls] " Frederic Weisbecker
2009-04-02 1:12 ` Steven Rostedt [this message]
2009-04-02 1:55 ` Ingo Molnar
2009-04-02 2:42 ` Steven Rostedt
2009-04-02 3:17 ` Ingo Molnar
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=20090402011232.GA32066@goodmis.org \
--to=rostedt@goodmis.org \
--cc=fweisbec@gmail.com \
--cc=gregkh@suse.de \
--cc=hpa@zytor.com \
--cc=johannes@sipsolutions.net \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-tip-commits@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=mingo@redhat.com \
--cc=stable@kernel.org \
--cc=tglx@linutronix.de \
--cc=torvalds@linux-foundation.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