diff options
author | Haiyang Zhang <haiyangz@microsoft.com> | 2016-08-04 20:42:15 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-08-09 02:14:07 +0300 |
commit | 7f5d5af0b2f859f09b3dcb16a00b800fa48d9288 (patch) | |
tree | 3354e0a6841c8c8ec8ae132e6f5281ff3b26bec4 /drivers/net/hyperv/hyperv_net.h | |
parent | b37879e6ca7079943542048da37f00a386c30cee (diff) | |
download | linux-7f5d5af0b2f859f09b3dcb16a00b800fa48d9288.tar.xz |
hv_netvsc: Add handler for physical link speed change
On Hyper-V host 2016 and later, VMs gets an event message of the physical
link speed when vSwitch is changed. This patch handles this message, so
the updated link speed can be reported by ethtool.
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Reviewed-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/hyperv/hyperv_net.h')
-rw-r--r-- | drivers/net/hyperv/hyperv_net.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/hyperv/hyperv_net.h b/drivers/net/hyperv/hyperv_net.h index 467fb8b4d083..c1403fda874c 100644 --- a/drivers/net/hyperv/hyperv_net.h +++ b/drivers/net/hyperv/hyperv_net.h @@ -490,6 +490,7 @@ struct nvsp_2_vsc_capability { u64 sriov:1; u64 ieee8021q:1; u64 correlation_id:1; + u64 teaming:1; }; }; } __packed; |