netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] spidernet: skb used after netif_receive_skb
@ 2007-05-17  1:39 Florin Malita
  0 siblings, 0 replies; only message in thread
From: Florin Malita @ 2007-05-17  1:39 UTC (permalink / raw)
  To: linas; +Cc: cbe-oss-dev, netdev

The stats update code in spider_net_pass_skb_up() is touching the skb 
after it's been passed up to the stack. To avoid that, just update the 
stats first.


Signed-off-by: Florin Malita <fmalita@gmail.com>
---

 spider_net.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/net/spider_net.c b/drivers/net/spider_net.c
index 108adbf..1df2f0b 100644
--- a/drivers/net/spider_net.c
+++ b/drivers/net/spider_net.c
@@ -1013,12 +1013,12 @@ spider_net_pass_skb_up(struct spider_net_descr *descr,
 		 */
 	}
 
-	/* pass skb up to stack */
-	netif_receive_skb(skb);
-
 	/* update netdevice statistics */
 	card->netdev_stats.rx_packets++;
 	card->netdev_stats.rx_bytes += skb->len;
+
+	/* pass skb up to stack */
+	netif_receive_skb(skb);
 }
 
 #ifdef DEBUG


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2007-05-17  1:41 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-17  1:39 [PATCH] spidernet: skb used after netif_receive_skb Florin Malita

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).