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

Commit 1ca8d156 authored by Dotan Barak's avatar Dotan Barak Committed by Roland Dreier
Browse files

RDMA/iwcm: Remove IB_ACCESS_LOCAL_WRITE from remote QP attributes



Remove IB_ACCESS_LOCAL_WRITE from qp.qp_access_flags because this
attribute is only used to set remote permissions.

Signed-off-by: default avatarDotan Barak <dotanba@gmail.com>
Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
parent 01b3fc8b
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -942,8 +942,7 @@ static int iwcm_init_qp_init_attr(struct iwcm_id_private *cm_id_priv,
	case IW_CM_STATE_CONN_RECV:
	case IW_CM_STATE_ESTABLISHED:
		*qp_attr_mask = IB_QP_STATE | IB_QP_ACCESS_FLAGS;
		qp_attr->qp_access_flags = IB_ACCESS_LOCAL_WRITE |
					   IB_ACCESS_REMOTE_WRITE|
		qp_attr->qp_access_flags = IB_ACCESS_REMOTE_WRITE|
					   IB_ACCESS_REMOTE_READ;
		ret = 0;
		break;