From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Fri, 17 May 2013 12:18:24 +0200 From: Peter Zijlstra Subject: Re: [PATCH v2] locking: Fix copy/paste errors "ARCH_INLINE_*_UNLOCK_BH" Message-ID: <20130517101824.GA5162@dyad.programming.kicks-ass.net> References: <1365428154.1830.99.camel@x61.thuisdomein> <20130408151609.GA13640@gmail.com> <1365435015.1830.113.camel@x61.thuisdomein> <20130408153614.GB17500@gmail.com> <1368780693.1350.228.camel@x61.thuisdomein> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1368780693.1350.228.camel@x61.thuisdomein> Sender: linux-kernel-owner@vger.kernel.org List-Archive: List-Post: To: Paul Bolle Cc: Ingo Molnar , Thomas Gleixner , Martin Schwidefsky , Heiko Carstens , linux390@de.ibm.com, linux-s390@vger.kernel.org, linux-kernel@vger.kernel.org List-ID: On Fri, May 17, 2013 at 10:51:33AM +0200, Paul Bolle wrote: > The Kconfig symbols ARCH_INLINE_READ_UNLOCK_IRQ, > ARCH_INLINE_SPIN_UNLOCK_IRQ, and ARCH_INLINE_WRITE_UNLOCK_IRQ were added > in v2.6.33, but have never actually been used. Ingo Molnar spotted that > this is caused by three identical copy/paste erros. Eg, the Kconfig > entry for > INLINE_READ_UNLOCK_IRQ > > has an (optional) dependency on > ARCH_INLINE_READ_UNLOCK_BH > > were it apparently should depend on > ARCH_INLINE_READ_UNLOCK_IRQ > > instead. Likewise for the Kconfig entries for INLINE_SPIN_UNLOCK_IRQ and > INLINE_WRITE_UNLOCK_IRQ. Fix these three errors. > > Reported-by: Ingo Molnar > Signed-off-by: Paul Bolle Thanks!