aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/hw
diff options
context:
space:
mode:
authorJack Morgenstein <jackm@dev.mellanox.co.il>2014-03-12 06:00:43 -0400
committerDavid S. Miller <davem@davemloft.net>2014-03-12 15:57:16 -0400
commitaa9a2d51a3e70b15a898bec7dde3ce5726fec641 (patch)
tree3225c2a7a5c9ddc64991be14c94a06e63a34794a /drivers/infiniband/hw
parentceb5433b3a54979216d794e45147d25c24c94999 (diff)
mlx4: Activate RoCE/SRIOV
To activate RoCE/SRIOV, need to remove the following: 1. In mlx4_ib_add, need to remove the error return preventing initialization of a RoCE port under SRIOV. 2. In update_vport_qp_params (in resource_tracker.c) need to remove the error return when a RoCE RC or UD qp is detected. This error return causes the INIT-to-RTR qp transition to fail in the wrapper function under RoCE/SRIOV. Signed-off-by: Jack Morgenstein <jackm@dev.mellanox.co.il> Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/infiniband/hw')
-rw-r--r--drivers/infiniband/hw/mlx4/main.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/infiniband/hw/mlx4/main.c b/drivers/infiniband/hw/mlx4/main.c
index f9c12e92fdd6..1d1750ef000a 100644
--- a/drivers/infiniband/hw/mlx4/main.c
+++ b/drivers/infiniband/hw/mlx4/main.c
@@ -1888,14 +1888,6 @@ static void *mlx4_ib_add(struct mlx4_dev *dev)
1888 1888
1889 pr_info_once("%s", mlx4_ib_version); 1889 pr_info_once("%s", mlx4_ib_version);
1890 1890
1891 mlx4_foreach_non_ib_transport_port(i, dev)
1892 num_ports++;
1893
1894 if (mlx4_is_mfunc(dev) && num_ports) {
1895 dev_err(&dev->pdev->dev, "RoCE is not supported over SRIOV as yet\n");
1896 return NULL;
1897 }
1898
1899 num_ports = 0; 1891 num_ports = 0;
1900 mlx4_foreach_ib_transport_port(i, dev) 1892 mlx4_foreach_ib_transport_port(i, dev)
1901 num_ports++; 1893 num_ports++;