[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20160321115905.78a2b3e1@xeon-e3>
Date: Mon, 21 Mar 2016 11:59:05 -0700
From: Stephen Hemminger <shemming@...cade.com>
To: Phil Sutter <phil@....cc>
CC: <netdev@...r.kernel.org>
Subject: Re: [iproute PATCH] Use ARRAY_SIZE macro everywhere
On Thu, 17 Mar 2016 20:28:08 +0100
Phil Sutter <phil@....cc> wrote:
> This patch was generated by the following semantic patch (a trimmed down
> version of what is shipped with Linux sources):
>
> @@
> type T;
> T[] E;
> @@
> (
> - (sizeof(E)/sizeof(*E))
> + ARRAY_SIZE(E)
> |
> - (sizeof(E)/sizeof(E[...]))
> + ARRAY_SIZE(E)
> |
> - (sizeof(E)/sizeof(T))
> + ARRAY_SIZE(E)
> )
>
> The only manual adjustment was to include utils.h in misc/nstat.c to make
> the macro known there.
>
> Signed-off-by: Phil Sutter <phil@....cc>
I went ahead and did some checkpatch spring cleaning to code.
This is no longer needed.
Powered by blists - more mailing lists