From patchwork Fri Nov 4 11:43:34 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 80845 Delivered-To: patch@linaro.org Received: by 10.140.97.247 with SMTP id m110csp1103183qge; Fri, 4 Nov 2016 04:42:31 -0700 (PDT) X-Received: by 10.99.8.195 with SMTP id 186mr21353184pgi.80.1478259751786; Fri, 04 Nov 2016 04:42:31 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id q21si16034653pgi.63.2016.11.04.04.42.31; Fri, 04 Nov 2016 04:42:31 -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; dkim=pass header.i=@nifty.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 S1761958AbcKDLmW (ORCPT + 27 others); Fri, 4 Nov 2016 07:42:22 -0400 Received: from conuserg-12.nifty.com ([210.131.2.79]:26857 "EHLO conuserg-12.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1761114AbcKDLmV (ORCPT ); Fri, 4 Nov 2016 07:42:21 -0400 Received: from beagle.diag.org (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-12.nifty.com with ESMTP id uA4Bf7H9017322; Fri, 4 Nov 2016 20:41:08 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-12.nifty.com uA4Bf7H9017322 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1478259668; bh=GewLLyoOIps2A2fRWEK2N0lt27JWPq1+3GskrVc38FI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=KBFRh2q/4cxGpvc/E8R0F0weKN4Dt5culjIx02Z6AI7jvPZKl1Wtj4Hnbw43r77/8 c2p1lz2qkRFWKzkqoTagJHifWGjwWihZUwp8WbOlQfg5APRtIH9pWxWMdFCqeJQ1Uy yD4qG8CHGUCALERK1YGhEUKJ8bVaY+nnAG7rC9R/774FpbWIekUd9OkSw2zGuCgdFK faSRI2ddsnFAb9RGY4kRTLTJJZnBhqH8LniS2qu3+vVBneVnvPITmG8gdGyLN+2czI fnxNX9CPNLsYpdqb+ZcQ8qsaCsnZPS9r1n2IkAqaoz3k8GqeowV4eeOJzcqG6jG/F7 1cqnylvb+NyEA== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: linux-arm-kernel@lists.infradead.org Cc: Masahiro Yamada , Russell King , linux-kernel@vger.kernel.org Subject: [PATCH 1/3] ARM: cache-uniphier: call kzalloc() after DT property parsing Date: Fri, 4 Nov 2016 20:43:34 +0900 Message-Id: <1478259816-24965-2-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1478259816-24965-1-git-send-email-yamada.masahiro@socionext.com> References: <1478259816-24965-1-git-send-email-yamada.masahiro@socionext.com> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Allocate memory after DT property parsing that has more possibility of failure. This will decrease the number of bail-out points for kfree(). Signed-off-by: Masahiro Yamada --- arch/arm/mm/cache-uniphier.c | 34 ++++++++++++++++------------------ 1 file changed, 16 insertions(+), 18 deletions(-) -- 1.9.1 diff --git a/arch/arm/mm/cache-uniphier.c b/arch/arm/mm/cache-uniphier.c index dfe97b4..58f2ddb 100644 --- a/arch/arm/mm/cache-uniphier.c +++ b/arch/arm/mm/cache-uniphier.c @@ -328,7 +328,7 @@ static int __init __uniphier_cache_init(struct device_node *np, unsigned int *cache_level) { struct uniphier_cache_data *data; - u32 level, cache_size; + u32 level, line_size, nsets, cache_size; struct device_node *next_np; int ret = 0; @@ -354,36 +354,34 @@ static int __init __uniphier_cache_init(struct device_node *np, return -EINVAL; } - data = kzalloc(sizeof(*data), GFP_KERNEL); - if (!data) - return -ENOMEM; - - if (of_property_read_u32(np, "cache-line-size", &data->line_size) || - !is_power_of_2(data->line_size)) { + if (of_property_read_u32(np, "cache-line-size", &line_size) | + !is_power_of_2(line_size)) { pr_err("L%d: cache-line-size is unspecified or invalid\n", *cache_level); - ret = -EINVAL; - goto err; + return -EINVAL; } - if (of_property_read_u32(np, "cache-sets", &data->nsets) || - !is_power_of_2(data->nsets)) { + if (of_property_read_u32(np, "cache-sets", &nsets) || + !is_power_of_2(nsets)) { pr_err("L%d: cache-sets is unspecified or invalid\n", *cache_level); - ret = -EINVAL; - goto err; + return -EINVAL; } if (of_property_read_u32(np, "cache-size", &cache_size) || - cache_size == 0 || cache_size % (data->nsets * data->line_size)) { + cache_size == 0 || cache_size % (nsets * line_size)) { pr_err("L%d: cache-size is unspecified or invalid\n", *cache_level); - ret = -EINVAL; - goto err; + return -EINVAL; } - data->way_present_mask = - ((u32)1 << cache_size / data->nsets / data->line_size) - 1; + data = kzalloc(sizeof(*data), GFP_KERNEL); + if (!data) + return -ENOMEM; + + data->line_size = line_size; + data->nsets = nsets; + data->way_present_mask = ((u32)1 << cache_size / nsets / line_size) - 1; data->ctrl_base = of_iomap(np, 0); if (!data->ctrl_base) {