RE: [PATCH 01/16] trivial: use ARRAY_SIZE

From: Miller, Mike (OS Dev)
Date: Mon Jun 28 2010 - 15:06:34 EST




> -----Original Message-----
> From: Kulikov Vasiliy [mailto:segooon@xxxxxxxxx]
> Sent: Monday, June 28, 2010 6:55 AM
> To: trivial@xxxxxxxxxx
> Cc: Kernel Janitors; Miller, Mike (OS Dev); Jens Axboe;
> Stephen M. Cameron; Andrew Morton; Patterson, Andrew D
> (LeftHand Networks); ISS StorageDev; linux-kernel@xxxxxxxxxxxxxxx
> Subject: [PATCH 01/16] trivial: use ARRAY_SIZE
>
> Change sizeof(x) / sizeof(*x) to ARRAY_SIZE(x).
>
> Signed-off-by: Kulikov Vasiliy <segooon@xxxxxxxxx>
Acked-by: Mike Miller <mike.miller@xxxxxx>
> ---
> drivers/block/cciss.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c
> index 51ceaee..e1e7143 100644
> --- a/drivers/block/cciss.c
> +++ b/drivers/block/cciss.c
> @@ -335,7 +335,7 @@ static void
> cciss_map_sg_chain_block(ctlr_info_t *h, CommandList_struct
> *c, static const char *raid_label[] = { "0", "4", "1(1+0)",
> "5", "5+1", "ADG",
> "UNKNOWN"
> };
> -#define RAID_UNKNOWN (sizeof(raid_label) / sizeof(raid_label[0])-1)
> +#define RAID_UNKNOWN (ARRAY_SIZE(raid_label)-1)
>
> #ifdef CONFIG_PROC_FS
>
> --
> 1.7.0.4
>
> --
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/