Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1183799 > unrolled thread
| Started by | Steven Rostedt <rostedt@goodmis.org> |
|---|---|
| First post | 2015-07-14 17:50 +0200 |
| Last post | 2015-07-14 17:50 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [lkp] [torture] 945fa9c631b: BUG: unable to handle kernel NULL pointer dereference at (null) Steven Rostedt <rostedt@goodmis.org> - 2015-07-14 17:50 +0200
| From | Steven Rostedt <rostedt@goodmis.org> |
|---|---|
| Date | 2015-07-14 17:50 +0200 |
| Subject | Re: [lkp] [torture] 945fa9c631b: BUG: unable to handle kernel NULL pointer dereference at (null) |
| Message-ID | <pMaCZ-4AR-7@gated-at.bofh.it> |
On Tue, 14 Jul 2015 08:38:29 -0700
"Paul E. McKenney" <paulmck@linux.vnet.ibm.com> wrote:
> On Tue, Jul 14, 2015 at 09:04:08PM +0800, Huang Ying wrote:
> > FYI, we noticed the below changes on
> >
> > git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
> > commit 945fa9c631b04febe295a3a2a00c7e4a3cfb97db ("torture: Dump ftrace buffer when the RCU grace period stalls")
> >
> > We think the commit may reveal a existing bug.
>
> Hmmm... Is this perhaps a very slow boot due to diagnostics? If so,
> might the ftrace buffer not yet be initialized? CCing Steven Rostedt
> for his thoughts.
Is this reproducible?
Does the following patch fix it for you?
-- Steve
diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
index 6e79408674aa..4d68dc121687 100644
--- a/kernel/trace/trace.c
+++ b/kernel/trace/trace.c
@@ -6968,6 +6968,9 @@ void ftrace_dump(enum ftrace_dump_mode oops_dump_mode)
unsigned long flags;
int cnt = 0, cpu;
+ if (tracing_disabled)
+ return;
+
/* Only allow one dump user at a time. */
if (atomic_inc_return(&dump_running) != 1) {
atomic_dec(&dump_running);
--
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/
Back to top | Article view | linux.kernel
csiph-web