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 A8130C77B7A for ; Fri, 2 Jun 2023 06:51:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233725AbjFBGvG (ORCPT ); Fri, 2 Jun 2023 02:51:06 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51430 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233850AbjFBGvE (ORCPT ); Fri, 2 Jun 2023 02:51:04 -0400 Received: from muru.com (muru.com [72.249.23.125]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 5FA1AEB; Thu, 1 Jun 2023 23:51:03 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by muru.com (Postfix) with ESMTPS id C816D8111; Fri, 2 Jun 2023 06:51:02 +0000 (UTC) Date: Fri, 2 Jun 2023 09:51:01 +0300 From: Tony Lindgren To: Jiri Slaby Cc: Greg Kroah-Hartman , Andy Shevchenko , Andy Shevchenko , Dhruva Gole , Ilpo =?utf-8?B?SsOkcnZpbmVu?= , John Ogness , Johan Hovold , Sebastian Andrzej Siewior , Vignesh Raghavendra , linux-omap@vger.kernel.org, linux-serial@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] serial: core: Fix error handling for serial_core_ctrl_device_add() Message-ID: <20230602065101.GG14287@atomide.com> References: <20230602064104.41508-1-tony@atomide.com> <20230602064652.GF14287@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 * Jiri Slaby [230602 06:48]: > On 02. 06. 23, 8:46, Tony Lindgren wrote: > > * Tony Lindgren [230602 06:41]: > > > Checking for NULL is not enough as serial_base_ctrl_add() uses ERR_PTR(). > > > > > > Fixes: 84a9582fd203 ("serial: core: Start managing serial controllers to enable runtime PM") > > > Signed-off-by: Tony Lindgren > > > --- > > > drivers/tty/serial/serial_core.c | 2 +- > > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > > > diff --git a/drivers/tty/serial/serial_core.c b/drivers/tty/serial/serial_core.c > > > --- a/drivers/tty/serial/serial_core.c > > > +++ b/drivers/tty/serial/serial_core.c > > > @@ -3342,7 +3342,7 @@ int serial_core_register_port(struct uart_driver *drv, struct uart_port *port) > > > ctrl_dev = serial_core_ctrl_find(drv, port->dev, port->ctrl_id); > > > if (!ctrl_dev) { > > > new_ctrl_dev = serial_core_ctrl_device_add(port); > > > - if (!new_ctrl_dev) { > > > + if (IS_ERR_OR_NULL(new_ctrl_dev)) { > > > ret = -ENODEV; > > > goto err_unlock; > > > } > > > > Hmm actually we should also change to use ret = PTR_ERR(new_ctrl_dev) here > > instead of translating all the errors to -ENODEV. Will send out v2 version. > > Why OR_NULL at all, actually? Yup there should be no need for that thanks. Regards, Tony