Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751435AbWACPjv (ORCPT ); Tue, 3 Jan 2006 10:39:51 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751440AbWACPjv (ORCPT ); Tue, 3 Jan 2006 10:39:51 -0500 Received: from smtp.osdl.org ([65.172.181.4]:12684 "EHLO smtp.osdl.org") by vger.kernel.org with ESMTP id S1751435AbWACPju (ORCPT ); Tue, 3 Jan 2006 10:39:50 -0500 Date: Tue, 3 Jan 2006 07:38:41 -0800 (PST) From: Linus Torvalds To: Ingo Molnar cc: Nick Piggin , lkml , Andrew Morton , Arjan van de Ven , Nicolas Pitre , Jes Sorensen , Al Viro , Oleg Nesterov , David Howells , Alan Cox , Christoph Hellwig , Andi Kleen , Russell King Subject: Re: [patch 08/19] mutex subsystem, core In-Reply-To: <20060103150554.GA1211@elte.hu> Message-ID: References: <20060103100807.GH23289@elte.hu> <43BA78EC.7050603@yahoo.com.au> <20060103150554.GA1211@elte.hu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 784 Lines: 22 On Tue, 3 Jan 2006, Ingo Molnar wrote: > > > > Is this an interrupt deadlock, or do you not allow interrupt contexts > > to even trylock a mutex? > > correct, no irq contexts are allowed. This is also checked for if > CONFIG_DEBUG_MUTEXES is enabled. Note that semaphores are definitely used from interrupt context, and as such you can't replace them with mutexes if you do this. The prime example is the console semaphore. See kernel/printk.c, look for "down_trylock()", and realize that they are all about interrupts. Linus - 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/