diff options
author | Harish Chegondi <[email protected]> | 2016-03-05 08:49:24 -0800 |
---|---|---|
committer | Doug Ledford <[email protected]> | 2016-03-17 15:55:11 -0400 |
commit | 42d6ec19c918cb5bc6d14769e24240dce8f81687 (patch) | |
tree | 099661adc387320f45e596f1057198faea990e3f | |
parent | 79d0c088801b221330ee3b75cd10912003e3c6dd (diff) |
IB/hfi1: Add the break statement that was removed in an earlier patch
The break statement was unintentionally removed in this patch
commit 41ca419abc0ca7ee65d765408cdc1a7fed2897a3
("staging/rdma/hfi1: Remove hfi1 MR and hfi1 specific qp type")
Reviewed-by: Mike Marciniszyn <[email protected]>
Signed-off-by: Harish Chegondi <[email protected]>
Signed-off-by: Doug Ledford <[email protected]>
-rw-r--r-- | drivers/staging/rdma/hfi1/ruc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/rdma/hfi1/ruc.c b/drivers/staging/rdma/hfi1/ruc.c index 5d84981a6b51..aa53859503ee 100644 --- a/drivers/staging/rdma/hfi1/ruc.c +++ b/drivers/staging/rdma/hfi1/ruc.c @@ -470,6 +470,7 @@ again: goto inv_err; do_write: if (wqe->length == 0) + break; if (unlikely(!rvt_rkey_ok(qp, &qp->r_sge.sge, wqe->length, wqe->rdma_wr.remote_addr, wqe->rdma_wr.rkey, |