public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] s390/net/qeth_main.c: Fix use of skb after netif_rx
@ 2007-12-14  9:28 Julia Lawall
  2007-12-14  9:32 ` Wang Chen
  0 siblings, 1 reply; 2+ messages in thread
From: Julia Lawall @ 2007-12-14  9:28 UTC (permalink / raw)
  To: fpavlic, jgarzik, wangchen, linux-kernel, kernel-janitors

From: Julia Lawall <julia@diku.dk>

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.  The same problem occurs in some other drivers as well.

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>
---

diff -u -p a/drivers/s390/net/qeth_main.c b/drivers/s390/net/qeth_main.c
--- a/drivers/s390/net/qeth_main.c	2007-10-22 11:25:20.000000000 +0200
+++ b/drivers/s390/net/qeth_main.c	2007-12-14 10:20:06.000000000 +0100
@@ -2689,6 +2689,7 @@ qeth_process_inbound_buffer(struct qeth_
 	int offset;
 	int rxrc;
 	__u16 vlan_tag = 0;
+	unsigned int len;
 
 	/* get first element of current buffer */
 	element = (struct qdio_buffer_element *)&buf->buffer->element[0];
@@ -2717,6 +2718,7 @@ qeth_process_inbound_buffer(struct qeth_
 			dev_kfree_skb_any(skb);
 			continue;
 		}
+		len = skb->len;
 		if (card->info.type == QETH_CARD_TYPE_OSN)
 			rxrc = card->osn_info.data_cb(skb);
 		else
@@ -2733,7 +2735,7 @@ qeth_process_inbound_buffer(struct qeth_
 			rxrc = netif_rx(skb);
 		card->dev->last_rx = jiffies;
 		card->stats.rx_packets++;
-		card->stats.rx_bytes += skb->len;
+		card->stats.rx_bytes += len;
 	}
 }
 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2007-12-14  9:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-14  9:28 [PATCH] s390/net/qeth_main.c: Fix use of skb after netif_rx Julia Lawall
2007-12-14  9:32 ` Wang Chen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox