diff options
author | Phil Sutter <phil@nwl.cc> | 2017-01-18 14:04:39 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-01-20 11:43:17 -0500 |
commit | 9af15c38254d81c9991eba89335ca7c537d7f2c3 (patch) | |
tree | ca35f65647606c5c99c2a1b75a7f8ca184e06a9c /net | |
parent | 02e0bea6c83c657617195135667e6a3f50d3bfb3 (diff) | |
download | linux-9af15c38254d81c9991eba89335ca7c537d7f2c3.tar.bz2 |
device: Implement a bus agnostic dev_num_vf routine
Now that pci_bus_type has num_vf callback set, dev_num_vf can be
implemented in a bus type independent way and the check for whether a
PCI device is being handled in rtnetlink can be dropped.
Signed-off-by: Phil Sutter <phil@nwl.cc>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/core/rtnetlink.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c index f538f764fca6..152744643074 100644 --- a/net/core/rtnetlink.c +++ b/net/core/rtnetlink.c @@ -837,8 +837,7 @@ static void copy_rtnl_link_stats(struct rtnl_link_stats *a, static inline int rtnl_vfinfo_size(const struct net_device *dev, u32 ext_filter_mask) { - if (dev->dev.parent && dev_is_pci(dev->dev.parent) && - (ext_filter_mask & RTEXT_FILTER_VF)) { + if (dev->dev.parent && (ext_filter_mask & RTEXT_FILTER_VF)) { int num_vfs = dev_num_vf(dev->dev.parent); size_t size = nla_total_size(0); size += num_vfs * |