diff options
| author | Eyal Itkin <[email protected]> | 2017-02-07 16:43:05 +0300 |
|---|---|---|
| committer | Doug Ledford <[email protected]> | 2017-02-08 12:28:30 -0500 |
| commit | 628f07d33c1f2e7bf31e0a4a988bb07914bd5e73 (patch) | |
| tree | c228c66498f9a4562093fbbf80a41bcede0c06f2 | |
| parent | b4cfe3971f6eab542dd7ecc398bfa1aeec889934 (diff) | |
IB/rxe: Fix resid update
Update the response's resid field when larger than MTU, instead of only
updating the local resid variable.
Fixes: 8700e3e7c485 ("Soft RoCE driver")
Signed-off-by: Eyal Itkin <[email protected]>
Signed-off-by: Dan Carpenter <[email protected]>
Reviewed-by: Leon Romanovsky <[email protected]>
Signed-off-by: Doug Ledford <[email protected]>
| -rw-r--r-- | drivers/infiniband/sw/rxe/rxe_resp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/sw/rxe/rxe_resp.c b/drivers/infiniband/sw/rxe/rxe_resp.c index 3435efff8799..5bcf07328972 100644 --- a/drivers/infiniband/sw/rxe/rxe_resp.c +++ b/drivers/infiniband/sw/rxe/rxe_resp.c @@ -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; |