diff options
author | Eran Ben Elisha <eranbe@mellanox.com> | 2015-06-15 10:59:07 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-06-15 20:23:03 -0400 |
commit | 3b766cd832328fcb87db3507e7b98cf42f21689d (patch) | |
tree | b43cde2790d654f5d4a5e0254c7db783c520768c /include/linux/netdevice.h | |
parent | b42de4d01264fa84d8c9e04a18753a6c255567b5 (diff) |
net/core: Add reading VF statistics through the PF netdevice
Add ndo_get_vf_stats where the PF retrieves and fills the VFs traffic
statistics. We encode the VF stats in a nested manner to allow for
future extensions.
Signed-off-by: Eran Ben Elisha <eranbe@mellanox.com>
Signed-off-by: Hadar Hen Zion <hadarh@mellanox.com>
Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netdevice.h')
-rw-r--r-- | include/linux/netdevice.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 6f5f71ff5169..e20979dfd6a9 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
@@ -1100,6 +1100,10 @@ struct net_device_ops { | |||
1100 | struct ifla_vf_info *ivf); | 1100 | struct ifla_vf_info *ivf); |
1101 | int (*ndo_set_vf_link_state)(struct net_device *dev, | 1101 | int (*ndo_set_vf_link_state)(struct net_device *dev, |
1102 | int vf, int link_state); | 1102 | int vf, int link_state); |
1103 | int (*ndo_get_vf_stats)(struct net_device *dev, | ||
1104 | int vf, | ||
1105 | struct ifla_vf_stats | ||
1106 | *vf_stats); | ||
1103 | int (*ndo_set_vf_port)(struct net_device *dev, | 1107 | int (*ndo_set_vf_port)(struct net_device *dev, |
1104 | int vf, | 1108 | int vf, |
1105 | struct nlattr *port[]); | 1109 | struct nlattr *port[]); |