From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754547AbbJULL1 (ORCPT ); Wed, 21 Oct 2015 07:11:27 -0400 Received: from casper.infradead.org ([85.118.1.10]:53384 "EHLO casper.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752363AbbJULLZ (ORCPT ); Wed, 21 Oct 2015 07:11:25 -0400 Date: Wed, 21 Oct 2015 13:11:20 +0200 From: Peter Zijlstra To: Petr Mladek Cc: Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" , Andrew Morton , Jiri Kosina , x86@kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] x86/spinlocks: Avoid a deadlock when someone unlock a zapped ticked spinlock Message-ID: <20151021111120.GK17308@twins.programming.kicks-ass.net> References: <1445419089-4350-1-git-send-email-pmladek@suse.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1445419089-4350-1-git-send-email-pmladek@suse.com> User-Agent: Mutt/1.5.21 (2012-12-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Oct 21, 2015 at 11:18:09AM +0200, Petr Mladek wrote: > There are few situations when we reinitialize (zap) ticket spinlocks. It > typically happens when the system is going down after an error and we > want to avoid deadlock in some important services. For example, > zap_locks() in printk.c and ioapic_zap_locks(). So there's a few problems here. On x86 the code you patch is dead code, x86 no longer uses ticket locks. Other archs might still. And I entirely detest adding instructions to any lock path, be it the utmost fast path or not, for something that will _never_ happen (on a healthy system). I would still very much recommend getting rid of the need for zap_locks() in the first place. What I did back when is punt on the whole printk buffer madness and dump things to early_printk() without any locking. I think that as long as the printk buffer has locks you have to accept to loose some data when really bad stuff goes down.