From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from eu-smtp-delivery-143.mimecast.com ([207.82.80.143]:5210 "EHLO eu-smtp-delivery-143.mimecast.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754664AbbFWLNO convert rfc822-to-8bit (ORCPT ); Tue, 23 Jun 2015 07:13:14 -0400 Date: Tue, 23 Jun 2015 12:13:10 +0100 From: Dave P Martin To: Stefan Wahren Cc: "linux-serial@vger.kernel.org" , Greg Kroah-Hartman , Robin Murphy , popcorn mix , Jakub =?utf-8?B?S2ljacWEc2tp?= , Andrew Jackson , Russell King , Graeme Gregory , Andre Przywara , "linux-arm-kernel@lists.infradead.org" , Jorge Ramirez-Ortiz , stable Subject: Re: [PATCH] serial/amba-pl011: Disable interrupts around TX softirq Message-ID: <20150623111310.GB3645@e103592.cambridge.arm.com> References: <1434635669-23367-1-git-send-email-Dave.Martin@arm.com> <416658426.177742.1434791378036.JavaMail.open-xchange@oxbsltgw09.schlund.de> MIME-Version: 1.0 In-Reply-To: <416658426.177742.1434791378036.JavaMail.open-xchange@oxbsltgw09.schlund.de> Content-Type: text/plain; charset=WINDOWS-1252 Content-Transfer-Encoding: 8BIT Content-Disposition: inline Sender: stable-owner@vger.kernel.org List-ID: On Sat, Jun 20, 2015 at 10:09:37AM +0100, Stefan Wahren wrote: > > > Dave Martin hat am 18. Juni 2015 um 15:54 geschrieben: > > > > > > pl011_tx_softirq() currently uses spin_{,un}lock(), which are not > > sufficient to inhibit pl011_int() from being triggered by a local > > IRQ and trying to re-take the same lock. This can lead to > > deadlocks. > > > > This patch uses the _irq() locking variants instead to ensure that > > pl011_int() handling for a given port is deferred until any > > pl011_tx_softirq() work for that port is complete. > > > > Fixes: 734745caeb9f serial/amba-pl011: Activate TX IRQ passively > > Signed-off-by: Dave Martin > > Tested-by: Robin Murphy > > Cc: stable # 4.1 > > > > I also get info messages about inconsistent lock state on my mx28 board, > after applying the patch the messages disappeared. > > Tested-by: Stefan Wahren Thanks for the confirmation. Cheers ---Dave From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dave.Martin@arm.com (Dave P Martin) Date: Tue, 23 Jun 2015 12:13:10 +0100 Subject: [PATCH] serial/amba-pl011: Disable interrupts around TX softirq In-Reply-To: <416658426.177742.1434791378036.JavaMail.open-xchange@oxbsltgw09.schlund.de> References: <1434635669-23367-1-git-send-email-Dave.Martin@arm.com> <416658426.177742.1434791378036.JavaMail.open-xchange@oxbsltgw09.schlund.de> Message-ID: <20150623111310.GB3645@e103592.cambridge.arm.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Sat, Jun 20, 2015 at 10:09:37AM +0100, Stefan Wahren wrote: > > > Dave Martin hat am 18. Juni 2015 um 15:54 geschrieben: > > > > > > pl011_tx_softirq() currently uses spin_{,un}lock(), which are not > > sufficient to inhibit pl011_int() from being triggered by a local > > IRQ and trying to re-take the same lock. This can lead to > > deadlocks. > > > > This patch uses the _irq() locking variants instead to ensure that > > pl011_int() handling for a given port is deferred until any > > pl011_tx_softirq() work for that port is complete. > > > > Fixes: 734745caeb9f serial/amba-pl011: Activate TX IRQ passively > > Signed-off-by: Dave Martin > > Tested-by: Robin Murphy > > Cc: stable # 4.1 > > > > I also get info messages about inconsistent lock state on my mx28 board, > after applying the patch the messages disappeared. > > Tested-by: Stefan Wahren Thanks for the confirmation. Cheers ---Dave