diff options
author | Or Gerlitz <ogerlitz@mellanox.com> | 2016-11-22 23:09:54 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-11-24 16:01:14 -0500 |
commit | 3df5b3c67546fb05266766b6abaf71563f82efe4 (patch) | |
tree | a283cc7b49a7190e746e739b1636c99404554bd4 /net/core | |
parent | ac32378f3eca55123fe917a6bb38e581118de9e3 (diff) | |
download | op-kernel-dev-3df5b3c67546fb05266766b6abaf71563f82efe4.zip op-kernel-dev-3df5b3c67546fb05266766b6abaf71563f82efe4.tar.gz |
net: Add net-device param to the get offloaded stats ndo
Some drivers would need to check few internal matters for
that. To be used in downstream mlx5 commit.
Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/rtnetlink.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c index a99917b..ef8a960 100644 --- a/net/core/rtnetlink.c +++ b/net/core/rtnetlink.c @@ -3671,7 +3671,7 @@ static int rtnl_get_offload_stats(struct sk_buff *skb, struct net_device *dev, if (!size) continue; - if (!dev->netdev_ops->ndo_has_offload_stats(attr_id)) + if (!dev->netdev_ops->ndo_has_offload_stats(dev, attr_id)) continue; attr = nla_reserve_64bit(skb, attr_id, size, @@ -3712,7 +3712,7 @@ static int rtnl_get_offload_stats_size(const struct net_device *dev) for (attr_id = IFLA_OFFLOAD_XSTATS_FIRST; attr_id <= IFLA_OFFLOAD_XSTATS_MAX; attr_id++) { - if (!dev->netdev_ops->ndo_has_offload_stats(attr_id)) + if (!dev->netdev_ops->ndo_has_offload_stats(dev, attr_id)) continue; size = rtnl_get_offload_stats_attr_size(attr_id); nla_size += nla_total_size_64bit(size); |