All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] aoe: avoid using skb member after dev_queue_xmit
@ 2012-10-24 18:26 ` Ed Cashin, Ed Cashin
  0 siblings, 0 replies; 8+ messages in thread
From: Ed Cashin @ 2012-10-24 18:26 UTC (permalink / raw)
  To: akpm; +Cc: ecashin, dan.carpenter, kernel-janitors, linux-kernel

After calling dev_queue_xmit it is no longer safe to access the
members of the skb.

Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Ed Cashin <ecashin@coraid.com>
---
 drivers/block/aoe/aoenet.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/drivers/block/aoe/aoenet.c b/drivers/block/aoe/aoenet.c
index ae56828..2e47404 100644
--- a/drivers/block/aoe/aoenet.c
+++ b/drivers/block/aoe/aoenet.c
@@ -55,12 +55,14 @@ static int
 tx(void) __must_hold(&txlock)
 {
 	struct sk_buff *skb;
+	struct net_device *ifp;
 
 	while ((skb = skb_dequeue(&skbtxq))) {
 		spin_unlock_irq(&txlock);
+		ifp = skb->dev;
 		if (dev_queue_xmit(skb) = NET_XMIT_DROP && net_ratelimit())
 			pr_warn("aoe: packet could not be sent on %s.  %s\n",
-				skb->dev ? skb->dev->name : "netif",
+				ifp ? ifp->name : "netif",
 				"consider increasing tx_queue_len");
 		spin_lock_irq(&txlock);
 	}
-- 
1.7.1


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

end of thread, other threads:[~2012-10-25 17:36 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-24 18:26 [PATCH] aoe: avoid using skb member after dev_queue_xmit Ed Cashin
2012-10-24 18:26 ` Ed Cashin, Ed Cashin
2012-10-24 22:08 ` Andrew Morton
2012-10-24 22:08   ` Andrew Morton
2012-10-25  6:33   ` Dan Carpenter
2012-10-25  6:33     ` Dan Carpenter
2012-10-25 17:35     ` Ed Cashin
2012-10-25 17:35       ` Ed Cashin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.