Home
last modified time | relevance | path

Searched hist:a1889c0d2039a53ae04abb9f20c62500bd312bf3 (Results 1 – 1 of 1) sorted by relevance

/openbmc/linux/net/ipv4/
H A Digmp.cdiff a1889c0d2039a53ae04abb9f20c62500bd312bf3 Wed Jul 27 21:46:01 CDT 2011 Julia Lawall <julia@diku.dk> net: adjust array index

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@diku.dk>
Signed-off-by: David S. Miller <davem@davemloft.net>