commit | 5d66fe92a19fb41373d13e75831169a6b5e5bef5 | [log] [tgz] |
---|---|---|
author | Julia Lawall <julia@diku.dk> | Tue Dec 29 09:15:42 2009 +0000 |
committer | David S. Miller <davem@davemloft.net> | Sun Jan 03 21:42:51 2010 -0800 |
tree | 4a988fc18972b460f9410ec9e0600ef799d42963 | |
parent | 52ee264bca378835decb827d18b1d90b709ca4c9 [diff] |
drivers/net : Correct the size argument to kzalloc lp->rx_skb has type struct sk_buff **, not struct sk_buff *, so the elements of the array should have pointer type, not structure type. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @disable sizeof_type_expr@ type T; T **x; @@ x = <+...sizeof( - T + *x )...+> // </smpl> Signed-off-by: Julia Lawall <julia@diku.dk> Signed-off-by: David S. Miller <davem@davemloft.net>