Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965431AbaFQVkZ (ORCPT ); Tue, 17 Jun 2014 17:40:25 -0400 Received: from mail-qa0-f41.google.com ([209.85.216.41]:58745 "EHLO mail-qa0-f41.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965147AbaFQVkW (ORCPT ); Tue, 17 Jun 2014 17:40:22 -0400 From: Paul Moore To: Himangi Saraogi Cc: Stephen Smalley , Eric Paris , James Morris , selinux@tycho.nsa.gov, linux-security-module@vger.kernel.org, linux-kernel@vger.kernel.org, julia.lawall@lip6.fr Subject: Re: [PATCH] SELinux: use ARRAY_SIZE Date: Tue, 17 Jun 2014 17:40:17 -0400 Message-ID: <8937190.oVYW8tRbo1@sifl> User-Agent: KMail/4.13.1 (Linux/3.14.5-gentoo; KDE/4.13.1; x86_64; ; ) In-Reply-To: <20140616201104.GA18288@himangi-Dell> References: <20140616201104.GA18288@himangi-Dell> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tuesday, June 17, 2014 01:41:05 AM Himangi Saraogi wrote: > ARRAY_SIZE is more concise to use when the size of an array is divided > by the size of its type or the size of its first element. > > The Coccinelle semantic patch that makes this change is as follows: > > // > @@ > type T; > T[] E; > @@ > > - (sizeof(E)/sizeof(E[...])) > + ARRAY_SIZE(E) > // > > Signed-off-by: Himangi Saraogi > --- > security/selinux/ss/policydb.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) Applied, thanks. > diff --git a/security/selinux/ss/policydb.c b/security/selinux/ss/policydb.c > index 9c5cdc2..56eb65f 100644 > --- a/security/selinux/ss/policydb.c > +++ b/security/selinux/ss/policydb.c > @@ -2608,7 +2608,7 @@ static int mls_write_range_helper(struct mls_range *r, > void *fp) if (!eq) > buf[2] = cpu_to_le32(r->level[1].sens); > > - BUG_ON(items > (sizeof(buf)/sizeof(buf[0]))); > + BUG_ON(items > ARRAY_SIZE(buf)); > > rc = put_entry(buf, sizeof(u32), items, fp); > if (rc) > @@ -2990,7 +2990,7 @@ static int role_write(void *vkey, void *datum, void > *ptr) if (p->policyvers >= POLICYDB_VERSION_BOUNDARY) > buf[items++] = cpu_to_le32(role->bounds); > > - BUG_ON(items > (sizeof(buf)/sizeof(buf[0]))); > + BUG_ON(items > ARRAY_SIZE(buf)); > > rc = put_entry(buf, sizeof(u32), items, fp); > if (rc) > @@ -3040,7 +3040,7 @@ static int type_write(void *vkey, void *datum, void > *ptr) } else { > buf[items++] = cpu_to_le32(typdatum->primary); > } > - BUG_ON(items > (sizeof(buf) / sizeof(buf[0]))); > + BUG_ON(items > ARRAY_SIZE(buf)); > rc = put_entry(buf, sizeof(u32), items, fp); > if (rc) > return rc; > @@ -3069,7 +3069,7 @@ static int user_write(void *vkey, void *datum, void > *ptr) buf[items++] = cpu_to_le32(usrdatum->value); > if (p->policyvers >= POLICYDB_VERSION_BOUNDARY) > buf[items++] = cpu_to_le32(usrdatum->bounds); > - BUG_ON(items > (sizeof(buf) / sizeof(buf[0]))); > + BUG_ON(items > ARRAY_SIZE(buf)); > rc = put_entry(buf, sizeof(u32), items, fp); > if (rc) > return rc; -- paul moore www.paul-moore.com -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/