Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 194322
b: refs/heads/master
c: 9ccb897
h: refs/heads/master
v: v3
  • Loading branch information
David S. Miller committed Apr 22, 2010
1 parent 8ef6832 commit 3b5fb03
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e326bed2f47d0365da5a8faaf8ee93ed2d86325b
refs/heads/master: 9ccb8975940c4ee51161152e37058e3d9e06c62f
15 changes: 8 additions & 7 deletions trunk/net/core/dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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);
Expand Down

0 comments on commit 3b5fb03

Please sign in to comment.