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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id ACC05CA100B for ; Sat, 31 Aug 2024 06:28:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:List-Subscribe:List-Help :List-Post:List-Archive:List-Unsubscribe:List-Id:Content-Transfer-Encoding: Content-Type:In-Reply-To:From:References:CC:To:Subject:MIME-Version:Date: Message-ID:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=vFi1gmNFDu19UNn20vBs0C3YBUmcFUo4JFpDqSh1dmA=; b=vrRKMkw8meV+ic+mMvgGoUp5jx U3U4ol22Mify5bj7XZM01oc8U+a6GzVrT6OQ5e00ONlPqrDTMtohTUdNd6g1V1X7A/J7poJiHC5N3 Uidhc6wCqHITm6tyOliJWRrU/VtKlxlSQ0+9R3OtFBHuQAkXjsTgkhZpe/vXqhoTxa3QlNsI2NIB5 MuqF95GXRYMFvMhBANrfMig8zHqjelAG9vjp3wybAF11w4HDy11V76zhvcs4nKjgPalVItfcRxvB5 ZU776wHK33DzecTuuku1GxtISBMO55GjmR5WymkkoLAwyAA96CpF9kGwN/mM26aNSY2ECC8i7OWSn qWRTbcmg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1skHal-00000008jWP-0zIQ; Sat, 31 Aug 2024 06:28:11 +0000 Received: from szxga08-in.huawei.com ([45.249.212.255]) by bombadil.infradead.org with esmtps (Exim 4.97.1 #2 (Red Hat Linux)) id 1skHZr-00000008iqO-15F2 for linux-arm-kernel@lists.infradead.org; Sat, 31 Aug 2024 06:27:16 +0000 Received: from mail.maildlp.com (unknown [172.19.163.252]) by szxga08-in.huawei.com (SkyGuard) with ESMTP id 4WwlQT41JKz18MxP; Sat, 31 Aug 2024 14:26:09 +0800 (CST) Received: from kwepemh500013.china.huawei.com (unknown [7.202.181.146]) by mail.maildlp.com (Postfix) with ESMTPS id 6DDD41800CF; Sat, 31 Aug 2024 14:27:01 +0800 (CST) Received: from [10.67.109.254] (10.67.109.254) by kwepemh500013.china.huawei.com (7.202.181.146) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.11; Sat, 31 Aug 2024 14:27:00 +0800 Message-ID: <5ba9c21f-acfa-7c89-a358-b52aa9ecedd3@huawei.com> Date: Sat, 31 Aug 2024 14:27:00 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.2.0 Subject: Re: [PATCH -next v2 2/4] soc: ti: knav_dma: Use dev_err_probe() to simplfy code Content-Language: en-US To: Krzysztof Kozlowski , Nishanth Menon CC: , , , References: <20240830063228.3519385-1-ruanjinjie@huawei.com> <20240830063228.3519385-3-ruanjinjie@huawei.com> <20240830103155.5vs2hdokw6yysq47@finance> <29edea69-92ce-2ac9-2aa8-bb9a4674ca01@huawei.com> <8a02ecd3-4e3d-4332-85da-8a0bdf4b9ed2@kernel.org> From: Jinjie Ruan In-Reply-To: <8a02ecd3-4e3d-4332-85da-8a0bdf4b9ed2@kernel.org> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Originating-IP: [10.67.109.254] X-ClientProxiedBy: dggems703-chm.china.huawei.com (10.3.19.180) To kwepemh500013.china.huawei.com (7.202.181.146) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240830_232715_592291_A1E83AB2 X-CRM114-Status: GOOD ( 14.53 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On 2024/8/31 13:21, Krzysztof Kozlowski wrote: > On 31/08/2024 03:59, Jinjie Ruan wrote: >> >> >> On 2024/8/30 18:31, Nishanth Menon wrote: >>> On 14:32-20240830, Jinjie Ruan wrote: >>>> Use the dev_err_probe() helper to simplify error handling >>>> during probe. >>>> >>>> Signed-off-by: Jinjie Ruan >>>> --- >>>> v2: >>>> - Split into 2 patches. >>>> --- >>>> drivers/soc/ti/knav_dma.c | 12 ++++-------- >>>> 1 file changed, 4 insertions(+), 8 deletions(-) >>>> >>>> diff --git a/drivers/soc/ti/knav_dma.c b/drivers/soc/ti/knav_dma.c >>>> index 15e41d3a5e22..eeec422a46f0 100644 >>>> --- a/drivers/soc/ti/knav_dma.c >>>> +++ b/drivers/soc/ti/knav_dma.c >>>> @@ -708,17 +708,13 @@ static int knav_dma_probe(struct platform_device *pdev) >>>> struct device_node *node = pdev->dev.of_node; >>>> int ret = 0; >>>> >>>> - if (!node) { >>>> - dev_err(&pdev->dev, "could not find device info\n"); >>>> - return -EINVAL; >>>> - } >>>> + if (!node) >>>> + return dev_err_probe(&pdev->dev, -EINVAL, "could not find device info\n"); >>>> >>>> kdev = devm_kzalloc(dev, >>>> sizeof(struct knav_dma_pool_device), GFP_KERNEL); >>>> - if (!kdev) { >>>> - dev_err(dev, "could not allocate driver mem\n"); >>>> - return -ENOMEM; >>>> - } >>>> + if (!kdev) >>>> + return dev_err_probe(dev, -ENOMEM, "could not allocate driver mem\n"); >>> >>> These make no sense to me :( -> just using dev_err_probe when there is >>> no chance of -EPROBE_DEFER ? >> >> I noticed a change in dev_err_probe() this year, which is described in >> this patch: >> >> For an out-of-memory error there should be no additional output. Adapt >> dev_err_probe() to not emit the error message when err is -ENOMEM. >> This simplifies handling errors that might among others be -ENOMEM. >> >> >> And the comment of dev_err_probe() said below: >> >> * Using this helper in your probe function is totally fine even if @err > > Fine but not much useful and at the same time huge churn from @vivo.com. I see, it is fine with these dev_err_probe() dropped, the main is the scoped child iterate. > > Best regards, > Krzysztof >