diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2010-05-10 08:01:31 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-05-10 08:01:31 -0400 |
commit | 1ae5dc342ac78d7a42965fd1f323815f6f5ef2c1 (patch) | |
tree | d1955a7639e99832590df26466a34d5786a880ae /drivers/net/fec.c | |
parent | 2b0b05ddc04b6d45e71cd36405df512075786f1e (diff) |
net: trans_start cleanups
Now that core network takes care of trans_start updates, dont do it
in drivers themselves, if possible. Drivers can avoid one cache miss
(on dev->trans_start) in their start_xmit() handler.
Exceptions are NETIF_F_LLTX drivers
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/fec.c')
-rw-r--r-- | drivers/net/fec.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/net/fec.c b/drivers/net/fec.c index 2b1651aee13f..47da51957803 100644 --- a/drivers/net/fec.c +++ b/drivers/net/fec.c | |||
@@ -275,8 +275,6 @@ fec_enet_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
275 | | BD_ENET_TX_LAST | BD_ENET_TX_TC); | 275 | | BD_ENET_TX_LAST | BD_ENET_TX_TC); |
276 | bdp->cbd_sc = status; | 276 | bdp->cbd_sc = status; |
277 | 277 | ||
278 | dev->trans_start = jiffies; | ||
279 | |||
280 | /* Trigger transmission start */ | 278 | /* Trigger transmission start */ |
281 | writel(0, fep->hwp + FEC_X_DES_ACTIVE); | 279 | writel(0, fep->hwp + FEC_X_DES_ACTIVE); |
282 | 280 | ||