diff options
author | Or Gerlitz <ogerlitz@mellanox.com> | 2014-12-14 16:18:05 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-12-15 11:34:54 -0500 |
commit | c78e25edbf3ed87b23709c9b0732be5fa00d5f9f (patch) | |
tree | d585c494c1abfbc156da51e5872930542128667a /drivers/net/ethernet/mellanox/mlx4/main.c | |
parent | da315679e80635021e98de1306ff4eee0759ba57 (diff) | |
download | blackbird-obmc-linux-c78e25edbf3ed87b23709c9b0732be5fa00d5f9f.tar.gz blackbird-obmc-linux-c78e25edbf3ed87b23709c9b0732be5fa00d5f9f.zip |
net/mlx4_core: Avoid double dumping of the PF device capabilities
To support asymmetric EQ allocations, we should query the device
capabilities prior to enabling SRIOV. As a side effect of adding that,
we are dumping the PF device capabilities twice. Avoid that by moving
the printing into a helper function which is called once.
Fixes: 7ae0e400cd93 ('net/mlx4_core: Flexible (asymmetric) allocation of
EQs and MSI-X vectors for PF/VFs')
Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/mellanox/mlx4/main.c')
-rw-r--r-- | drivers/net/ethernet/mellanox/mlx4/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/mellanox/mlx4/main.c b/drivers/net/ethernet/mellanox/mlx4/main.c index c2ef266ad7c1..b935bf3d0bb3 100644 --- a/drivers/net/ethernet/mellanox/mlx4/main.c +++ b/drivers/net/ethernet/mellanox/mlx4/main.c @@ -305,6 +305,7 @@ static int mlx4_dev_cap(struct mlx4_dev *dev, struct mlx4_dev_cap *dev_cap) mlx4_err(dev, "QUERY_DEV_CAP command failed, aborting\n"); return err; } + mlx4_dev_cap_dump(dev, dev_cap); if (dev_cap->min_page_sz > PAGE_SIZE) { mlx4_err(dev, "HCA minimum page size of %d bigger than kernel PAGE_SIZE of %ld, aborting\n", |