Received: by 2002:a4a:311b:0:0:0:0:0 with SMTP id k27-v6csp4196775ooa; Tue, 14 Aug 2018 02:31:55 -0700 (PDT) X-Google-Smtp-Source: AA+uWPx/iMHyrX82u71IWKU2zRiUTQgYTkH69LRr+aTVyC6oiKAtOTgjBPn7hCWCtDPSynPZ25pK X-Received: by 2002:a62:4fd9:: with SMTP id f86-v6mr22282946pfj.110.1534239115050; Tue, 14 Aug 2018 02:31:55 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1534239115; cv=none; d=google.com; s=arc-20160816; b=et8J/9ozvphjojiA+gSVIQcgWK79wgvcnftr2D6XlYaibs5Vr1sUT1SqgXM9w3/+Yq +2bI8/3uCpSbyLdTlVS0UETCJcGCwJ0qxu5Kr585SRJieMV6JhnkaJQPWwF0NZKRY+Z+ /cVPp5mBXCSKfY4IV41Kpc0JWQaYerj80HKvNq6sIUj/gTix1YkyTHwj776MeG/urLqy +Fk30HQ/me0tNLfFtr/k+r1teVddTZhbEk0Shf8YdtI4zyrU6fcfLVvLg5sYqwOkv3cC Y0K4PDVYi2LYHxlBrMfZstOvJUnIt1gEpQ4wTFqho6LWJeV9NFzy81CGOKARDPo5AYbK KISw== 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:references :in-reply-to:subject:cc:to:from:arc-authentication-results; bh=0a4flHq8iG96MrybBv1jalt6zmP8X5HpFOs0CCcyZww=; b=dwEuC7soxhF5BnoTnUgH2QUOPyV+Km4AZe6qQonSDAS5J0Sd3iJWoSqo068PWq3l1g aGRjU+SLGnzKXX8G62/KuOBKzM4GLw5YFHufNJmKvRP7TWa6HfXarhlO1aAE3DyIVWJF 8+mELE8BhLMH9WdCGK8BrccKgy75F/CuuPmi3EyNwlPdDwfDA7ToxFYHBv8sdw9ASDyC G2Q/GrOkd4UlDRdqQD6oWVc9nCrdQHMdXkY+W8fWkqmxC/N0DQGRNhGkP/7eGuiJKNWz 3uNQsj2eW5VUxlFluaPMcyk8+zlSuGqB2KRWJ0ZmpipMG7yL2b80NjkwPM+DIO7BeCnz mMsQ== 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 x185-v6si21512703pfb.306.2018.08.14.02.31.40; Tue, 14 Aug 2018 02:31:55 -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 S1731882AbeHNMPN (ORCPT + 99 others); Tue, 14 Aug 2018 08:15:13 -0400 Received: from ozlabs.org ([203.11.71.1]:55743 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728314AbeHNMPN (ORCPT ); Tue, 14 Aug 2018 08:15:13 -0400 Received: from authenticated.ozlabs.org (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPSA id 41qS2l1wCwz9s0n; Tue, 14 Aug 2018 19:28:47 +1000 (AEST) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ellerman.id.au From: Michael Ellerman To: zhong jiang , tony.luck@intel.com, fenghua.yu@intel.com, benh@kernel.crashing.org, paulus@samba.org, oleg@redhat.com, rppt@linux.vnet.ibm.com, dhowells@redhat.com, akpm@linux-foundation.org, viro@zeniv.linux.org.uk Cc: linux-ia64@vger.kernel.org, linux-kernel@vger.kernel.org, linuxppc-dev@lists.ozlabs.org Subject: Re: [PATCH 2/2] powerpc: Use ARRAY_SIZE to replace its implementation In-Reply-To: <1534214814-9043-3-git-send-email-zhongjiang@huawei.com> References: <1534214814-9043-1-git-send-email-zhongjiang@huawei.com> <1534214814-9043-3-git-send-email-zhongjiang@huawei.com> Date: Tue, 14 Aug 2018 19:28:46 +1000 Message-ID: <874lfxjnzl.fsf@concordia.ellerman.id.au> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org zhong jiang writes: > Use ARRAY_SIZE instead of dividing sizeof array with sizeof an element. > So just replace it. > > Signed-off-by: zhong jiang > --- > arch/powerpc/xmon/ppc-opc.c | 12 ++++-------- > 1 file changed, 4 insertions(+), 8 deletions(-) This code is copied from binutils and we don't want to needlessly cause it to diverge from the binutils copy. So thanks but no thanks. cheers > diff --git a/arch/powerpc/xmon/ppc-opc.c b/arch/powerpc/xmon/ppc-opc.c > index ac2b55b..f3f57a1 100644 > --- a/arch/powerpc/xmon/ppc-opc.c > +++ b/arch/powerpc/xmon/ppc-opc.c > @@ -966,8 +966,7 @@ > { 0xff, 11, NULL, NULL, PPC_OPERAND_SIGNOPT }, > }; > > -const unsigned int num_powerpc_operands = (sizeof (powerpc_operands) > - / sizeof (powerpc_operands[0])); > +const unsigned int num_powerpc_operands = ARRAY_SIZE(powerpc_operands); > > /* The functions used to insert and extract complicated operands. */ > > @@ -6980,8 +6979,7 @@ > {"fcfidu.", XRC(63,974,1), XRA_MASK, POWER7|PPCA2, PPCVLE, {FRT, FRB}}, > }; > > -const int powerpc_num_opcodes = > - sizeof (powerpc_opcodes) / sizeof (powerpc_opcodes[0]); > +const int powerpc_num_opcodes = ARRAY_SIZE(powerpc_opcodes); > > /* The VLE opcode table. > > @@ -7219,8 +7217,7 @@ > {"se_bl", BD8(58,0,1), BD8_MASK, PPCVLE, 0, {B8}}, > }; > > -const int vle_num_opcodes = > - sizeof (vle_opcodes) / sizeof (vle_opcodes[0]); > +const int vle_num_opcodes = ARRAY_SIZE(vle_opcodes); > > /* The macro table. This is only used by the assembler. */ > > @@ -7288,5 +7285,4 @@ > {"e_clrlslwi",4, PPCVLE, "e_rlwinm %0,%1,%3,(%2)-(%3),31-(%3)"}, > }; > > -const int powerpc_num_macros = > - sizeof (powerpc_macros) / sizeof (powerpc_macros[0]); > +const int powerpc_num_macros = ARRAY_SIZE(powerpc_macros); > -- > 1.7.12.4