aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorHaggai Abramonvsky <hagaya@mellanox.com>2015-04-02 17:07:20 +0300
committerDavid S. Miller <davem@davemloft.net>2015-04-02 16:33:40 -0400
commitc3c6c9c810e100ab92c782e855f9ab9991065f4e (patch)
tree101861624895602850284a09365ebc420f82ed53 /drivers
parentnet/mlx5_core: Allocate firmware pages from device's NUMA node (diff)
downloadlinux-dev-c3c6c9c810e100ab92c782e855f9ab9991065f4e.tar.xz
linux-dev-c3c6c9c810e100ab92c782e855f9ab9991065f4e.zip
net/mlx5_core: Fix call to mlx5_core_qp_modify
Pass 0 in the sqd_event parameter. Signed-off-by: Haggai Abramovsky <hagaya@mellanox.com> Signed-off-by: Eli Cohen <eli@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/infiniband/hw/mlx5/qp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/mlx5/qp.c b/drivers/infiniband/hw/mlx5/qp.c
index be0cd358b080..2c0f142cd3ba 100644
--- a/drivers/infiniband/hw/mlx5/qp.c
+++ b/drivers/infiniband/hw/mlx5/qp.c
@@ -1165,7 +1165,7 @@ static void destroy_qp_common(struct mlx5_ib_dev *dev, struct mlx5_ib_qp *qp)
if (qp->state != IB_QPS_RESET) {
mlx5_ib_qp_disable_pagefaults(qp);
if (mlx5_core_qp_modify(dev->mdev, to_mlx5_state(qp->state),
- MLX5_QP_STATE_RST, in, sizeof(*in), &qp->mqp))
+ MLX5_QP_STATE_RST, in, 0, &qp->mqp))
mlx5_ib_warn(dev, "mlx5_ib: modify QP %06x to RESET failed\n",
qp->mqp.qpn);
}