diff options
author | Willem de Bruijn <willemb@google.com> | 2012-04-27 09:04:07 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-04-30 21:33:27 -0400 |
commit | 49cbb1c1e6fd8fb069ef9fbfadc97042168f93bf (patch) | |
tree | a6a0b193175ee7179e38cbfbc67c7e94ce2589f1 /drivers | |
parent | 8373c57d6fa59ca35ad3cf11d719060051ccd920 (diff) | |
download | linux-3.10-49cbb1c1e6fd8fb069ef9fbfadc97042168f93bf.tar.gz linux-3.10-49cbb1c1e6fd8fb069ef9fbfadc97042168f93bf.tar.bz2 linux-3.10-49cbb1c1e6fd8fb069ef9fbfadc97042168f93bf.zip |
forcedeth: add transmit timestamping support
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/ethernet/nvidia/forcedeth.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/ethernet/nvidia/forcedeth.c b/drivers/net/ethernet/nvidia/forcedeth.c index d93a088debc..928913c4f3f 100644 --- a/drivers/net/ethernet/nvidia/forcedeth.c +++ b/drivers/net/ethernet/nvidia/forcedeth.c @@ -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); |