forcedeth: add transmit timestamping support
authorWillem de Bruijn <willemb@google.com>
Fri, 27 Apr 2012 09:04:07 +0000 (09:04 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 1 May 2012 01:33:27 +0000 (21:33 -0400)
Insert an skb_tx_timestamp call in both ndo_start_xmit routines
Tested to work for the nv_start_xmit_optimized case

Signed-off-by: Willem de Bruijn <willemb@google.com>
Acked-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/nvidia/forcedeth.c

index d93a088..928913c 100644 (file)
@@ -2279,6 +2279,8 @@ static netdev_tx_t nv_start_xmit(struct sk_buff *skb, struct net_device *dev)
 
        netdev_sent_queue(np->dev, skb->len);
 
+       skb_tx_timestamp(skb);
+
        np->put_tx.orig = put_tx;
 
        spin_unlock_irqrestore(&np->lock, flags);
@@ -2426,6 +2428,8 @@ static netdev_tx_t nv_start_xmit_optimized(struct sk_buff *skb,
 
        netdev_sent_queue(np->dev, skb->len);
 
+       skb_tx_timestamp(skb);
+
        np->put_tx.ex = put_tx;
 
        spin_unlock_irqrestore(&np->lock, flags);