Re: [PATCH net-next-2.6] net: Introduce skb_orphan_try()

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: David Miller
Date: Thursday, April 22, 2010 - 12:54 am

From: Eric Dumazet <eric.dumazet@gmail.com>
Date: Thu, 22 Apr 2010 09:47:03 +0200


Yes, that's much more concise.  This should be ready to go:

net: Orphan and de-dst skbs earlier in xmit path.

This way GSO packets don't get handled differently.

With help from Eric Dumazet.

Signed-off-by: David S. Miller <davem@davemloft.net>

diff --git a/net/core/dev.c b/net/core/dev.c
index 3ba774b..a4a7c36 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -1902,13 +1902,6 @@ int dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev,
 		if (!list_empty(&ptype_all))
 			dev_queue_xmit_nit(skb, dev);
 
-		if (netif_needs_gso(dev, skb)) {
-			if (unlikely(dev_gso_segment(skb)))
-				goto out_kfree_skb;
-			if (skb->next)
-				goto gso;
-		}
-
 		/*
 		 * If device doesnt need skb->dst, release it right now while
 		 * its hot in this cpu cache
@@ -1917,6 +1910,14 @@ int dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev,
 			skb_dst_drop(skb);
 
 		skb_orphan_try(skb);
+
+		if (netif_needs_gso(dev, skb)) {
+			if (unlikely(dev_gso_segment(skb)))
+				goto out_kfree_skb;
+			if (skb->next)
+				goto gso;
+		}
+
 		rc = ops->ndo_start_xmit(skb, dev);
 		if (rc == NETDEV_TX_OK)
 			txq_trans_update(txq);
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
NULL pointer dereference panic in stable (2.6.33.2), amd64, Denys Fedorysychenko, (Sun Apr 11, 1:38 pm)
Re: NULL pointer dereference panic in stable (2.6.33.2), amd64, Denys Fedorysychenko, (Sun Apr 11, 4:04 pm)
Re: NULL pointer dereference panic in stable (2.6.33.2), amd64, Denys Fedorysychenko, (Sun Apr 11, 4:36 pm)
Re: NULL pointer dereference panic in stable (2.6.33.2), amd64, Denys Fedorysychenko, (Mon Apr 12, 9:11 am)
Re: NULL pointer dereference panic in stable (2.6.33.2), amd64, Denys Fedorysychenko, (Thu Apr 15, 2:11 am)
[PATCH net-next-2.6] net: Introduce skb_orphan_try(), Eric Dumazet, (Fri Apr 16, 3:18 pm)
Re: [PATCH net-next-2.6] net: Introduce skb_orphan_try(), Eric Dumazet, (Tue Apr 20, 11:08 pm)
Re: [PATCH net-next-2.6] net: Introduce skb_orphan_try(), David Miller, (Wed Apr 21, 10:56 pm)
Re: [PATCH net-next-2.6] net: Introduce skb_orphan_try(), Eric Dumazet, (Thu Apr 22, 12:10 am)
Re: [PATCH net-next-2.6] net: Introduce skb_orphan_try(), David Miller, (Thu Apr 22, 12:16 am)
Re: [PATCH net-next-2.6] net: Introduce skb_orphan_try(), Eric Dumazet, (Thu Apr 22, 12:24 am)
Re: [PATCH net-next-2.6] net: Introduce skb_orphan_try(), David Miller, (Thu Apr 22, 12:26 am)
Re: [PATCH net-next-2.6] net: Introduce skb_orphan_try(), Eric Dumazet, (Thu Apr 22, 12:33 am)
Re: [PATCH net-next-2.6] net: Introduce skb_orphan_try(), David Miller, (Thu Apr 22, 12:41 am)
Re: [PATCH net-next-2.6] net: Introduce skb_orphan_try(), Eric Dumazet, (Thu Apr 22, 12:47 am)
Re: [PATCH net-next-2.6] net: Introduce skb_orphan_try(), David Miller, (Thu Apr 22, 12:54 am)
Re: [PATCH net-next-2.6] net: Introduce skb_orphan_try(), Eric Dumazet, (Thu Apr 22, 12:59 am)
Re: NULL pointer dereference panic in stable (2.6.33.2), amd64, Denys Fedorysychenko, (Thu Apr 29, 3:50 am)