Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e3353c26 authored by Artemy Kovalyov's avatar Artemy Kovalyov Committed by Doug Ledford
Browse files

IB/mlx5: Fix MODIFY_QP command input structure



Make MODIFY_QP command input structure compliant to specification

Fixes: e126ba97 ('mlx5: Add driver for Mellanox Connect-IB adapters')
Signed-off-by: default avatarArtemy Kovalyov <artemyko@mellanox.com>
Signed-off-by: default avatarLeon Romanovsky <leon@kernel.org>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent 402ca536
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -555,9 +555,9 @@ struct mlx5_destroy_qp_mbox_out {
struct mlx5_modify_qp_mbox_in {
struct mlx5_modify_qp_mbox_in {
	struct mlx5_inbox_hdr	hdr;
	struct mlx5_inbox_hdr	hdr;
	__be32			qpn;
	__be32			qpn;
	u8			rsvd1[4];
	__be32			optparam;
	u8			rsvd0[4];
	u8			rsvd0[4];
	__be32			optparam;
	u8			rsvd1[4];
	struct mlx5_qp_context	ctx;
	struct mlx5_qp_context	ctx;
	u8			rsvd2[16];
	u8			rsvd2[16];
};
};