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

Commit 865cea40 authored by Ram Amrani's avatar Ram Amrani Committed by Doug Ledford
Browse files

RDMA/qedr: Return success when not changing QP state



If the user is requesting us to change the QP state to the same state
that it is already in, return success instead of failure.

Signed-off-by: default avatarRam Amrani <Ram.Amrani@cavium.com>
Signed-off-by: default avatarMichal Kalderon <Michal.Kalderon@cavium.com>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent 20f5e10e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1657,7 +1657,7 @@ static int qedr_update_qp_state(struct qedr_dev *dev,
	int status = 0;

	if (new_state == qp->state)
		return 1;
		return 0;

	switch (qp->state) {
	case QED_ROCE_QP_STATE_RESET: