Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752711AbbBXDaz (ORCPT ); Mon, 23 Feb 2015 22:30:55 -0500 Received: from ozlabs.org ([103.22.144.67]:42979 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752592AbbBXDaw (ORCPT ); Mon, 23 Feb 2015 22:30:52 -0500 From: Anton Blanchard To: Andrew Morton , Steven Rostedt , Michael Ellerman , Paul Mackerras , Benjamin Herrenschmidt , sam.bobroff@au1.ibm.com, Thomas Gleixner , Ingo Molnar , hpa@zytor.com, Russell King , peterz@infradead.org, Don Zickus Cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, x86@kernel.org Subject: [PATCH 6/7] dump_stack: Serialise dump_stack with die_spin_lock_{irqsave,irqrestore} Date: Tue, 24 Feb 2015 14:30:33 +1100 Message-Id: <1424748634-9153-7-git-send-email-anton@samba.org> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1424748634-9153-1-git-send-email-anton@samba.org> References: <1424748634-9153-1-git-send-email-anton@samba.org> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1724 Lines: 76 Remove another version of a recursive lock in dump_stack. Signed-off-by: Anton Blanchard --- lib/dump_stack.c | 40 ++++------------------------------------ 1 file changed, 4 insertions(+), 36 deletions(-) diff --git a/lib/dump_stack.c b/lib/dump_stack.c index 6745c62..f64ee3c 100644 --- a/lib/dump_stack.c +++ b/lib/dump_stack.c @@ -7,7 +7,7 @@ #include #include #include -#include +#include static void __dump_stack(void) { @@ -20,44 +20,12 @@ static void __dump_stack(void) * * Architectures can override this implementation by implementing its own. */ -#ifdef CONFIG_SMP -static atomic_t dump_lock = ATOMIC_INIT(-1); - asmlinkage __visible void dump_stack(void) { - int was_locked; - int old; - int cpu; - - /* - * Permit this cpu to perform nested stack dumps while serialising - * against other CPUs - */ - preempt_disable(); - -retry: - cpu = smp_processor_id(); - old = atomic_cmpxchg(&dump_lock, -1, cpu); - if (old == -1) { - was_locked = 0; - } else if (old == cpu) { - was_locked = 1; - } else { - cpu_relax(); - goto retry; - } - - __dump_stack(); + unsigned long flags; - if (!was_locked) - atomic_set(&dump_lock, -1); - - preempt_enable(); -} -#else -asmlinkage __visible void dump_stack(void) -{ + die_spin_lock_irqsave(flags); __dump_stack(); + die_spin_unlock_irqrestore(flags); } -#endif EXPORT_SYMBOL(dump_stack); -- 2.1.0 -- 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/