aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/rionet.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/rionet.c')
-rw-r--r--drivers/net/rionet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/rionet.c b/drivers/net/rionet.c
index e9f101c9bae2..bfbb39f93554 100644
--- a/drivers/net/rionet.c
+++ b/drivers/net/rionet.c
@@ -216,9 +216,9 @@ static int rionet_start_xmit(struct sk_buff *skb, struct net_device *ndev)
216 * it just report sending a packet to the target 216 * it just report sending a packet to the target
217 * (without actual packet transfer). 217 * (without actual packet transfer).
218 */ 218 */
219 dev_kfree_skb_any(skb);
220 ndev->stats.tx_packets++; 219 ndev->stats.tx_packets++;
221 ndev->stats.tx_bytes += skb->len; 220 ndev->stats.tx_bytes += skb->len;
221 dev_kfree_skb_any(skb);
222 } 222 }
223 } 223 }
224 224