projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bf24e13
)
net: ethernet: ti: cpsw: move skb timestamp to packet_submit
author
Ivan Khoronzhuk
<
[email protected]
>
Tue, 27 Jun 2017 13:58:51 +0000
(16:58 +0300)
committer
David S. Miller
<
[email protected]
>
Thu, 29 Jun 2017 16:28:56 +0000
(12:28 -0400)
Move sw timestamp function close to channel submit function.
Signed-off-by: Ivan Khoronzhuk <
[email protected]
>
Signed-off-by: David S. Miller <
[email protected]
>
drivers/net/ethernet/ti/cpsw.c
patch
|
blob
|
history
diff --git
a/drivers/net/ethernet/ti/cpsw.c
b/drivers/net/ethernet/ti/cpsw.c
index b7a0f5eeab620b30c5abcf8798f2bd3fdb2fb401..422994ea0b4946dc57a9f681038f4846fd040c8f 100644
(file)
--- 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;