mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-16 11:38:11 +00:00
hv_netvsc: add software transmit timestamp support
Enable skb_tx_timestamp in hyperv netvsc. Signed-off-by: Simon Xiao <sixiao@microsoft.com> Reviewed-by: K. Y. Srinivasan <kys@microsoft.com> Reviewed-by: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e0d8c1b738
commit
76d13b5687
1 changed files with 3 additions and 0 deletions
|
@ -550,6 +550,8 @@ do_send:
|
||||||
packet->page_buf_cnt = init_page_array(rndis_msg, rndis_msg_size,
|
packet->page_buf_cnt = init_page_array(rndis_msg, rndis_msg_size,
|
||||||
skb, packet, &pb);
|
skb, packet, &pb);
|
||||||
|
|
||||||
|
/* timestamp packet in software */
|
||||||
|
skb_tx_timestamp(skb);
|
||||||
ret = netvsc_send(net_device_ctx->device_ctx, packet,
|
ret = netvsc_send(net_device_ctx->device_ctx, packet,
|
||||||
rndis_msg, &pb, skb);
|
rndis_msg, &pb, skb);
|
||||||
|
|
||||||
|
@ -920,6 +922,7 @@ static const struct ethtool_ops ethtool_ops = {
|
||||||
.get_link = ethtool_op_get_link,
|
.get_link = ethtool_op_get_link,
|
||||||
.get_channels = netvsc_get_channels,
|
.get_channels = netvsc_get_channels,
|
||||||
.set_channels = netvsc_set_channels,
|
.set_channels = netvsc_set_channels,
|
||||||
|
.get_ts_info = ethtool_op_get_ts_info,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct net_device_ops device_ops = {
|
static const struct net_device_ops device_ops = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue