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

Commit 628f07d3 authored by Eyal Itkin's avatar Eyal Itkin Committed by Doug Ledford
Browse files

IB/rxe: Fix resid update



Update the response's resid field when larger than MTU, instead of only
updating the local resid variable.

Fixes: 8700e3e7 ("Soft RoCE driver")
Signed-off-by: default avatarEyal Itkin <eyal.itkin@gmail.com>
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: default avatarLeon Romanovsky <leonro@mellanox.com>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent b4cfe397
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -479,7 +479,7 @@ static enum resp_states check_rkey(struct rxe_qp *qp,
				goto err2;
			}

			resid = mtu;
			qp->resp.resid = mtu;
		} else {
			if (pktlen != resid) {
				state = RESPST_ERR_LENGTH;