Re: [PATCH 3/6] drivers/net/niu.c: adjust array index

From: David Miller
Date: Mon Aug 01 2011 - 05:32:24 EST


From: Julia Lawall <julia@xxxxxxx>
Date: Thu, 28 Jul 2011 14:46:03 +0200

> From: Julia Lawall <julia@xxxxxxx>
>
> Convert array index from the loop bound to the loop index.
>
> A simplified version of the semantic patch that fixes this problem is as
> follows: (http://coccinelle.lip6.fr/)
>
> // <smpl>
> @@
> expression e1,e2,ar;
> @@
>
> for(e1 = 0; e1 < e2; e1++) { <...
> ar[
> - e2
> + e1
> ]
> ...> }
> // </smpl>
>
> Signed-off-by: Julia Lawall <julia@xxxxxxx>

Applied.
--
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/