[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <alpine.DEB.2.11.1607122144560.4083@nanos>
Date: Tue, 12 Jul 2016 21:59:23 +0200 (CEST)
From: Thomas Gleixner <tglx@...utronix.de>
To: kernel test robot <xiaolong.ye@...el.com>
cc: lkp@...org, tipbuild@...or.com,
LKML <linux-kernel@...r.kernel.org>,
"H. Peter Anvin" <hpa@...or.com>,
LKML <linux-kernel@...r.kernel.org>,
Vince Weaver <vincent.weaver@...ne.edu>,
Stephane Eranian <eranian@...gle.com>,
Peter Zijlstra <peterz@...radead.org>,
Linus Torvalds <torvalds@...ux-foundation.org>,
Kan Liang <kan.liang@...el.com>, Jiri Olsa <jolsa@...hat.com>,
Borislav Petkov <bp@...e.de>,
Arnaldo Carvalho de Melo <acme@...hat.com>,
Arnaldo Carvalho de Melo <acme@...nel.org>,
Alexander Shishkin <alexander.shishkin@...ux.intel.com>,
Adam Borowski <kilobyte@...band.pl>,
Sebastian Andrzej Siewior <bigeasy@...utronix.de>,
Anna-Maria Gleixner <anna-maria@...utronix.de>,
Ingo Molnar <mingo@...nel.org>
Subject: Re: [perf/x86] 8de4a00661: WARNING: CPU: 0 PID: 1 at
kernel/locking/mutex-debug.c:80 debug_mutex_unlock+0x20c/0x2b3
On Tue, 12 Jul 2016, Thomas Gleixner wrote:
> /me goes digging deeper
and dons a brown paperbag....
8<----------------
Subject: cpuhotplug: Keep enough storage space if SMP=n
From: Thomas Gleixner <tglx@...utronix.de>
The cpuhp_bp_states array is cut short when CONFIG_SMP=n, but the dynamically
registered callbacks are stored nevertheless and happily scribble outside of
the array bounds.
We need to store them in case that the state is unregistered so we can invoke
the teardown function. That's independent of CONFIG_SMP. Make sure the array
is large enough.
Fixes: cff7d378d3fd "cpu/hotplug: Convert to a state machine for the control processor"
Reported-by: kernel test robot <xiaolong.ye@...el.com>
Cc: stable@...r.kernel.org
Signed-off-by: Thomas Gleixner <tglx@...utronix.de>
---
diff --git a/kernel/cpu.c b/kernel/cpu.c
index d948e44c471e..7b61887f7ccd 100644
--- a/kernel/cpu.c
+++ b/kernel/cpu.c
@@ -1201,6 +1201,8 @@ static struct cpuhp_step cpuhp_bp_states[] = {
.teardown = takedown_cpu,
.cant_stop = true,
},
+#else
+ [CPUHP_BRINGUP_CPU] = { },
#endif
};
Powered by blists - more mailing lists