diff options
author | Ivan Khoronzhuk <ivan.khoronzhuk@linaro.org> | 2017-06-27 16:58:51 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-06-29 12:28:56 -0400 |
commit | 98fdd857a3bd6a3bf0003d3f68f07c25c85dcde3 (patch) | |
tree | 0013a63282ae6123a554b0a4c520ae8180025a81 /drivers/net/ethernet/ti/cpsw.c | |
parent | bf24e136a32eb513195b6e0148e5a70131a95494 (diff) | |
download | linux-98fdd857a3bd6a3bf0003d3f68f07c25c85dcde3.tar.gz linux-98fdd857a3bd6a3bf0003d3f68f07c25c85dcde3.tar.bz2 linux-98fdd857a3bd6a3bf0003d3f68f07c25c85dcde3.zip |
net: ethernet: ti: cpsw: move skb timestamp to packet_submit
Move sw timestamp function close to channel submit function.
Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/ti/cpsw.c')
-rw-r--r-- | drivers/net/ethernet/ti/cpsw.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/ethernet/ti/cpsw.c b/drivers/net/ethernet/ti/cpsw.c index b7a0f5eeab62..422994ea0b49 100644 --- a/drivers/net/ethernet/ti/cpsw.c +++ b/drivers/net/ethernet/ti/cpsw.c @@ -1236,6 +1236,7 @@ static inline int cpsw_tx_packet_submit(struct cpsw_priv *priv, { struct cpsw_common *cpsw = priv->cpsw; + skb_tx_timestamp(skb); return cpdma_chan_submit(txch, skb, skb->data, skb->len, priv->emac_port + cpsw->data.dual_emac); } @@ -1611,8 +1612,6 @@ static netdev_tx_t cpsw_ndo_start_xmit(struct sk_buff *skb, cpts_is_tx_enabled(cpsw->cpts)) skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS; - skb_tx_timestamp(skb); - q_idx = skb_get_queue_mapping(skb); if (q_idx >= cpsw->tx_ch_num) q_idx = q_idx % cpsw->tx_ch_num; |