Julia Lawall 9b3efc0133 [S390]: Fix use of skb after netif_rx
Recently, Wang Chen submitted a patch
(d30f53aeb31d453a5230f526bea592af07944564) to move a call to netif_rx(skb)
after a subsequent reference to skb, because netif_rx may call kfree_skb on
its argument.  netif_rx_ni calls netif_rx, so the same problem occurs in
the files below.

I have left the updating of dev->last_rx after the calls to netif_rx_ni
because it seems time dependent, but moved the other field updates before.

This was found using the following semantic match.
(http://www.emn.fr/x-info/coccinelle/)

// <smpl>
@@
expression skb, e,e1;
@@

(
 netif_rx(skb);
|
 netif_rx_ni(skb);
)
  ... when != skb = e
(
  skb = e1
|
* skb
)
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: David S. Miller <davem@davemloft.net>
2007-12-11 02:45:29 -08:00
..
2007-10-17 08:42:52 -07:00
2007-12-10 19:43:55 -08:00
2007-10-29 17:27:50 -04:00
2007-12-03 08:13:17 -08:00
2007-10-16 09:43:09 -07:00
2007-10-19 11:53:42 -07:00
2007-12-04 01:35:32 -05:00
2007-12-07 09:06:53 +00:00
2007-11-14 18:45:39 -08:00
2007-11-05 15:12:31 -08:00
2007-11-29 09:24:53 -08:00
2007-12-10 19:43:54 -08:00
2007-10-20 15:04:06 -07:00
2007-12-10 19:43:55 -08:00
2007-10-17 08:42:57 -07:00
2007-11-14 18:45:36 -08:00
2007-10-23 15:49:54 +10:00