diff options
author | Richard Cochran <richard.cochran@omicron.at> | 2011-06-21 19:00:24 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-06-21 19:00:24 -0400 |
commit | 73151ce35bd6d56e61a87b2855193f82540bf3d3 (patch) | |
tree | b2e1a78176025614b0a130b3ddaf37bbcc49177a /drivers/net/mv643xx_eth.c | |
parent | e00f85bec0a9924eb517ccd126ddbb9787068f53 (diff) |
mv643xx_eth: fix race in trasmit path.
Because the socket buffer is freed in the completion interrupt, it is not
safe to access it after submitting it to the hardware.
Signed-off-by: Richard Cochran <richard.cochran@omicron.at>
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/mv643xx_eth.c')
-rw-r--r-- | drivers/net/mv643xx_eth.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/net/mv643xx_eth.c b/drivers/net/mv643xx_eth.c index a5d9b1c310b3..1b7d2c1c34b6 100644 --- a/drivers/net/mv643xx_eth.c +++ b/drivers/net/mv643xx_eth.c | |||
@@ -859,7 +859,7 @@ no_csum: | |||
859 | static netdev_tx_t mv643xx_eth_xmit(struct sk_buff *skb, struct net_device *dev) | 859 | static netdev_tx_t mv643xx_eth_xmit(struct sk_buff *skb, struct net_device *dev) |
860 | { | 860 | { |
861 | struct mv643xx_eth_private *mp = netdev_priv(dev); | 861 | struct mv643xx_eth_private *mp = netdev_priv(dev); |
862 | int queue; | 862 | int length, queue; |
863 | struct tx_queue *txq; | 863 | struct tx_queue *txq; |
864 | struct netdev_queue *nq; | 864 | struct netdev_queue *nq; |
865 | 865 | ||
@@ -881,10 +881,12 @@ static netdev_tx_t mv643xx_eth_xmit(struct sk_buff *skb, struct net_device *dev) | |||
881 | return NETDEV_TX_OK; | 881 | return NETDEV_TX_OK; |
882 | } | 882 | } |
883 | 883 | ||
884 | length = skb->len; | ||
885 | |||
884 | if (!txq_submit_skb(txq, skb)) { | 886 | if (!txq_submit_skb(txq, skb)) { |
885 | int entries_left; | 887 | int entries_left; |
886 | 888 | ||
887 | txq->tx_bytes += skb->len; | 889 | txq->tx_bytes += length; |
888 | txq->tx_packets++; | 890 | txq->tx_packets++; |
889 | 891 | ||
890 | entries_left = txq->tx_ring_size - txq->tx_desc_count; | 892 | entries_left = txq->tx_ring_size - txq->tx_desc_count; |