Received: by 2002:a25:ab43:0:0:0:0:0 with SMTP id u61csp790112ybi; Fri, 14 Jun 2019 03:27:05 -0700 (PDT) X-Google-Smtp-Source: APXvYqy9zDFyzbWKcUYCRGRriLh+rh6hy6PW6zjxkNqN0Q+/Ahyvfd7tyDn3UNhORrCoyEx2kzch X-Received: by 2002:a63:8b4c:: with SMTP id j73mr23427936pge.15.1560508024962; Fri, 14 Jun 2019 03:27:04 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1560508024; cv=none; d=google.com; s=arc-20160816; b=nQqWIZxWZrAVYW/jUxNOWprCSE3hZ1jEV0MmP+qZMyCW2YU94HyD5G3SJfPgFw9Zr0 Zd0yDOO9LxQkYuzCd/rNFzjM6KEDrOb7SbrHR4gRi2qAzxD+sSXidZ0ALATi9Dp8nUIG VbffAoQFWYLJpuoP9+RAIhXYFkbAhRXQxD6p02ShFhOAbwfz5nUpyMXLcrG8ZD0lgjwf r9Z1hu3u27xXbFJPLL8A5+7qHdGcqm+MX9+X91VwcIReWxDcx37LdLbKC1IR/4mY6LSh us2LEpL1/spVZ+IUIzh0QQzVtEYvSXREK1XjQ9ky+QF8cYJoEtRBmJGXjXAv91VE7GR6 A0Eg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:message-id:date:subject:cc :to:from; bh=ZHKx5MOjQIW9zZO/yYvPP4VbDN+ChMTughF/NRzvKmA=; b=yHzUkqSJY9xQnXk1DejAOsVnDmrqRyb3C4Q8Cw8x/AAL03AF1LirjvFTW6XZGX6JQ0 /wqzV81XjXVAKngyAFSmwe8DPqAkcrSbnFpxsBFmvgouiWv2waia/8exXzh6qroITtbm uFg4eUkk02WDdZ8CUfbugbKZiy7fOxU0gPHlCnhpTjeH3hDEMeRpky5jtoe02YXCFO+b DyldFcC6rnWlq3iLxAfSFTJ9jofRZKa2TmvucIFWK7I4Qa0B2yV8j9t/em8ux0Aia+PE 00wcEFuHtlQUc3eMZSeJMcaQ2pYf3fLLihp3uCijBdjrNv7wVICk6pjWEJ68hBJRi24Q lEAw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id s13si2024969pfs.142.2019.06.14.03.26.48; Fri, 14 Jun 2019 03:27:04 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727375AbfFNK0V (ORCPT + 99 others); Fri, 14 Jun 2019 06:26:21 -0400 Received: from szxga04-in.huawei.com ([45.249.212.190]:18572 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726884AbfFNK0V (ORCPT ); Fri, 14 Jun 2019 06:26:21 -0400 Received: from DGGEMS405-HUB.china.huawei.com (unknown [172.30.72.60]) by Forcepoint Email with ESMTP id 2E17F8C56086200B960B; Fri, 14 Jun 2019 18:26:17 +0800 (CST) Received: from localhost.localdomain (10.67.212.75) by DGGEMS405-HUB.china.huawei.com (10.3.19.205) with Microsoft SMTP Server id 14.3.439.0; Fri, 14 Jun 2019 18:26:08 +0800 From: John Garry To: CC: , , , , , John Garry Subject: [PATCH v2] bus: hisi_lpc: Don't use devm_kzalloc() to allocate logical PIO range Date: Fri, 14 Jun 2019 18:24:53 +0800 Message-ID: <1560507893-42553-1-git-send-email-john.garry@huawei.com> X-Mailer: git-send-email 2.8.1 MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.67.212.75] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org If, after registering a logical PIO range, the driver probe later fails, the logical PIO range memory will be released automatically. This causes an issue, in that the logical PIO range is not unregistered (that is not supported) and the released range memory may be later referenced Allocate the logical PIO range with kzalloc() to avoid this potential issue. Fixes: adf38bb0b5956 ("HISI LPC: Support the LPC host on Hip06/Hip07 with DT bindings") Signed-off-by: John Garry --- Change to v1: - add comment, as advised by Joe Perches diff --git a/drivers/bus/hisi_lpc.c b/drivers/bus/hisi_lpc.c index 19d7b6ff2f17..5f0130a693fe 100644 --- a/drivers/bus/hisi_lpc.c +++ b/drivers/bus/hisi_lpc.c @@ -599,7 +599,8 @@ static int hisi_lpc_probe(struct platform_device *pdev) if (IS_ERR(lpcdev->membase)) return PTR_ERR(lpcdev->membase); - range = devm_kzalloc(dev, sizeof(*range), GFP_KERNEL); + /* Logical PIO may reference 'range' memory even if the probe fails */ + range = kzalloc(sizeof(*range), GFP_KERNEL); if (!range) return -ENOMEM; @@ -610,6 +611,7 @@ static int hisi_lpc_probe(struct platform_device *pdev) ret = logic_pio_register_range(range); if (ret) { dev_err(dev, "register IO range failed (%d)!\n", ret); + kfree(range); return ret; } lpcdev->io_host = range; -- 2.17.1