From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id D9C44C7EE23 for ; Thu, 1 Jun 2023 10:44:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232580AbjFAKof (ORCPT ); Thu, 1 Jun 2023 06:44:35 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45990 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231954AbjFAKoe (ORCPT ); Thu, 1 Jun 2023 06:44:34 -0400 Received: from muru.com (muru.com [72.249.23.125]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id BC9D19D; Thu, 1 Jun 2023 03:44:33 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by muru.com (Postfix) with ESMTPS id E9B7180F1; Thu, 1 Jun 2023 10:44:32 +0000 (UTC) Date: Thu, 1 Jun 2023 13:44:31 +0300 From: Tony Lindgren To: Steven Price Cc: Greg Kroah-Hartman , Jiri Slaby , Andy Shevchenko , Dhruva Gole , Ilpo =?utf-8?B?SsOkcnZpbmVu?= , John Ogness , Johan Hovold , Sebastian Andrzej Siewior , Vignesh Raghavendra , linux-omap@vger.kernel.org, Andy Shevchenko , linux-kernel@vger.kernel.org, linux-serial@vger.kernel.org Subject: Re: [PATCH v12 1/1] serial: core: Start managing serial controllers to enable runtime PM Message-ID: <20230601104431.GX14287@atomide.com> References: <20230525113034.46880-1-tony@atomide.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-serial@vger.kernel.org Hi, * Steven Price [230601 10:04]: > I haven't studied this change in detail, but I assume the bug is that > serial_base_port_device_remove() shouldn't be dropping port_mutex. The > below hack gets my board booting again. You're right. I wonder how I managed to miss that.. Care to post a proper fix for this or do you want me to post it? > Thanks, > > Steve > > Hack fix: > ----8<---- > diff --git a/drivers/tty/serial/serial_core.c b/drivers/tty/serial/serial_core.c > index 29bd5ede0b25..044e4853341a 100644 > --- a/drivers/tty/serial/serial_core.c > +++ b/drivers/tty/serial/serial_core.c > @@ -3234,8 +3234,7 @@ static void serial_core_remove_one_port(struct uart_driver *drv, > wait_event(state->remove_wait, !atomic_read(&state->refcount)); > state->uart_port = NULL; > mutex_unlock(&port->mutex); > -out: > - mutex_unlock(&port_mutex); > +out:; > } Seems you can remove out here and just do a return earlier instead of goto. Regards, Tony