diff options
Diffstat (limited to 'net/core/dev.c')
-rw-r--r-- | net/core/dev.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/net/core/dev.c b/net/core/dev.c index be9924f60ec3..a8d68cdedbbe 100644 --- a/net/core/dev.c +++ b/net/core/dev.c | |||
@@ -1853,6 +1853,14 @@ gso: | |||
1853 | 1853 | ||
1854 | skb->next = nskb->next; | 1854 | skb->next = nskb->next; |
1855 | nskb->next = NULL; | 1855 | nskb->next = NULL; |
1856 | |||
1857 | /* | ||
1858 | * If device doesnt need nskb->dst, release it right now while | ||
1859 | * its hot in this cpu cache | ||
1860 | */ | ||
1861 | if (dev->priv_flags & IFF_XMIT_DST_RELEASE) | ||
1862 | skb_dst_drop(nskb); | ||
1863 | |||
1856 | rc = ops->ndo_start_xmit(nskb, dev); | 1864 | rc = ops->ndo_start_xmit(nskb, dev); |
1857 | if (unlikely(rc != NETDEV_TX_OK)) { | 1865 | if (unlikely(rc != NETDEV_TX_OK)) { |
1858 | if (rc & ~NETDEV_TX_MASK) | 1866 | if (rc & ~NETDEV_TX_MASK) |