Modify the reschedule warning to output the offline CPU value and a better debug message.
Signed-off-by: Prarit Bhargava <pra...@redhat.com> Cc: Thomas Gleixner <t...@linutronix.de> Cc: Ingo Molnar <mi...@redhat.com> Cc: "H. Peter Anvin" <h...@zytor.com> Cc: x...@kernel.org Cc: Wanpeng Li <wanpeng...@hotmail.com> Cc: Andrew Morton <a...@linux-foundation.org> Cc: "Steven Rostedt (VMware)" <rost...@goodmis.org> Cc: Daniel Bristot de Oliveira <bris...@redhat.com> Cc: Hidehiro Kawai <hidehiro.kawai...@hitachi.com> --- arch/x86/kernel/smp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/kernel/smp.c b/arch/x86/kernel/smp.c index d3c66a15bbde..94da6f6971bf 100644 --- a/arch/x86/kernel/smp.c +++ b/arch/x86/kernel/smp.c @@ -124,7 +124,7 @@ static void native_smp_send_reschedule(int cpu) { if (unlikely(cpu_is_offline(cpu))) { - WARN_ON(1); + WARN(1, "Attempting to schedule on offline CPU %d\n", cpu); return; } apic->send_IPI(cpu, RESCHEDULE_VECTOR); -- 1.7.9.3