diff options
author | Artemy Kovalyov <artemyko@mellanox.com> | 2016-06-17 15:33:31 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-08-20 18:09:24 +0200 |
commit | 02773ea7eddad4b35bc2812d3e7743ee48430d4b (patch) | |
tree | ec66e300800c0b0ba890ab8f3e45143ad2442f3a | |
parent | 148a19e60566ac9a72381bbfd51d00a8c264949b (diff) | |
download | linux-stable-02773ea7eddad4b35bc2812d3e7743ee48430d4b.tar.gz linux-stable-02773ea7eddad4b35bc2812d3e7743ee48430d4b.tar.bz2 linux-stable-02773ea7eddad4b35bc2812d3e7743ee48430d4b.zip |
IB/mlx5: Fix MODIFY_QP command input structure
commit e3353c268b06236d6c40fa1714c114f21f44451c upstream.
Make MODIFY_QP command input structure compliant to specification
Fixes: e126ba97dba9 ('mlx5: Add driver for Mellanox Connect-IB adapters')
Signed-off-by: Artemy Kovalyov <artemyko@mellanox.com>
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | include/linux/mlx5/qp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/mlx5/qp.h b/include/linux/mlx5/qp.h index f079fb1a31f7..554a5ef50c39 100644 --- a/include/linux/mlx5/qp.h +++ b/include/linux/mlx5/qp.h @@ -534,9 +534,9 @@ struct mlx5_destroy_qp_mbox_out { struct mlx5_modify_qp_mbox_in { struct mlx5_inbox_hdr hdr; __be32 qpn; - u8 rsvd1[4]; - __be32 optparam; u8 rsvd0[4]; + __be32 optparam; + u8 rsvd1[4]; struct mlx5_qp_context ctx; }; |