diff options
author | Guy Levi <guyle@mellanox.com> | 2017-08-17 15:50:46 +0300 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2017-08-24 23:27:11 +0300 |
commit | c3f1ee292f23cf49b43c0e9cf8c52bec821b6649 (patch) | |
tree | b112d708d36cf65396ace983f30d41cb59d8e491 /drivers/infiniband/hw | |
parent | 4a5fd5d2965cb889f30ad94a3bfd83da70aa2c9c (diff) | |
download | linux-c3f1ee292f23cf49b43c0e9cf8c52bec821b6649.tar.xz |
IB/mlx4: Fix RSS QP type in creation verb
The mlx4 was designed to support QP type of MLX4_IB_QPT_RAW_PACKET.
Fixes: 3078f5f1bd8b ("IB/mlx4: Add support for RSS QP")
Signed-off-by: Guy Levi <guyle@mellanox.com>
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/hw')
-rw-r--r-- | drivers/infiniband/hw/mlx4/qp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/mlx4/qp.c b/drivers/infiniband/hw/mlx4/qp.c index f7ee1792ba6d..0d2923c2225f 100644 --- a/drivers/infiniband/hw/mlx4/qp.c +++ b/drivers/infiniband/hw/mlx4/qp.c @@ -748,7 +748,7 @@ static int create_qp_rss(struct mlx4_ib_dev *dev, struct ib_pd *ibpd, INIT_LIST_HEAD(&qp->gid_list); INIT_LIST_HEAD(&qp->steering_rules); - qp->mlx4_ib_qp_type = MLX4_IB_QPT_RAW_ETHERTYPE; + qp->mlx4_ib_qp_type = MLX4_IB_QPT_RAW_PACKET; qp->state = IB_QPS_RESET; /* Set dummy send resources to be compatible with HV and PRM */ |