Received: by 2002:a05:6a10:9848:0:0:0:0 with SMTP id x8csp417753pxf; Thu, 8 Apr 2021 06:00:10 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyiKqr3v3QzFxwqUepqa87FMs96tbvXppkpaSFL3Czo7gz6SH3744sqdinmsEIKq/HOmYRK X-Received: by 2002:a50:d7d7:: with SMTP id m23mr11133229edj.378.1617886809927; Thu, 08 Apr 2021 06:00:09 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1617886809; cv=none; d=google.com; s=arc-20160816; b=teuP+Kq3MnERTfZVg+l5Fdm1lCKtBZ5WYFrq6j85TxU7qu14677FUANKIIvDvQNKcb 245cdOo+b6DOLGu+hN5LdG/0pWd0kICQiwKTrm9sOjjn+DCZ8nKrQiKM15td2kRfP7Pz uRvOWHKwDGGW/CI4qQC16/flpuzsOwvzt3Y9Uf8IKaFf8ipJ15zed/8UoBIKO6jiBFsZ 0374RlONbHlVo4YukrX8NenbqEZdyqfbjLTvB1kKqAHgwEQ4mHPXKPBeb29AyD2QKM1h VanXYpIB/viQGaHV8uPmoVFrvUORstafuxJvcxZp5NkU7MUwC664B5gtZqcycKIrmU2y vbhg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:mime-version:message-id:date:subject:cc:to:from; bh=S6NvS3fihaVpHO3GeAg8np0Y6H5+V9zHvegwQoPih9Q=; b=Io73zC798iyJGq/I+l6/6hyj6g+usUPR2Tsp5ATIp05YJ7RXh0y3DrDnkurdtjqezE Di1VmU20k6x+JPSip7KQDiUyTs8dYEPNyNoTGm5E3Nyyy9o6oj2GnvSfUr6wrLhv84W0 OF8jMGC8nUaD1VTh/iBLRnMgFBNFPGLC+8QCc0cGacpAfzJssR8cjkHdvlbqa/1zsFPp wgD6e8ryPall/7uJfZWxH9h7COq4wOmhWfMRJvRDRjK5q6XRpPnp/k8v1b3tj1P2Kh43 Ft8MUy663E1RI7vrqSvLh3zmhnFG0XHsrbQy7fCcJQUV5Vk5h3mQxt63BUSo3lClVDv0 6aIg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=huawei.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id p14si20971802ejc.493.2021.04.08.05.59.46; Thu, 08 Apr 2021 06:00:09 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=huawei.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231557AbhDHM5G (ORCPT + 99 others); Thu, 8 Apr 2021 08:57:06 -0400 Received: from szxga07-in.huawei.com ([45.249.212.35]:16844 "EHLO szxga07-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231371AbhDHM5E (ORCPT ); Thu, 8 Apr 2021 08:57:04 -0400 Received: from DGGEMS413-HUB.china.huawei.com (unknown [172.30.72.60]) by szxga07-in.huawei.com (SkyGuard) with ESMTP id 4FGLnW5d1Vz9vlh; Thu, 8 Apr 2021 20:54:39 +0800 (CST) Received: from ubuntu1804.huawei.com (10.67.174.174) by DGGEMS413-HUB.china.huawei.com (10.3.19.213) with Microsoft SMTP Server id 14.3.498.0; Thu, 8 Apr 2021 20:56:44 +0800 From: Li Huafei To: , , CC: , , , , , <--lihuafei1@huawei.com> Subject: [PATCH -next] i2c: omap: fix PM reference leak in omap_i2c_probe() Date: Thu, 8 Apr 2021 20:56:48 +0800 Message-ID: <20210408125648.136519-1-lihuafei1@huawei.com> X-Mailer: git-send-email 2.17.1 MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.67.174.174] X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org pm_runtime_get_sync will increment pm usage counter even it failed. Forgetting to putting operation will result in reference leak here. Fix it by replacing it with pm_runtime_resume_and_get to keep usage counter balanced. Reported-by: Hulk Robot Signed-off-by: Li Huafei --- drivers/i2c/busses/i2c-omap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/i2c/busses/i2c-omap.c b/drivers/i2c/busses/i2c-omap.c index 12ac4212aded..edbe498d49b8 100644 --- a/drivers/i2c/busses/i2c-omap.c +++ b/drivers/i2c/busses/i2c-omap.c @@ -1404,7 +1404,7 @@ omap_i2c_probe(struct platform_device *pdev) pm_runtime_set_autosuspend_delay(omap->dev, OMAP_I2C_PM_TIMEOUT); pm_runtime_use_autosuspend(omap->dev); - r = pm_runtime_get_sync(omap->dev); + r = pm_runtime_resume_and_get(omap->dev); if (r < 0) goto err_free_mem; @@ -1525,7 +1525,7 @@ static int omap_i2c_remove(struct platform_device *pdev) int ret; i2c_del_adapter(&omap->adapter); - ret = pm_runtime_get_sync(&pdev->dev); + ret = pm_runtime_resume_and_get(&pdev->dev); if (ret < 0) return ret; -- 2.17.1