Message ID | df9c9545-7c00-328b-9f98-535d8e889715@grimberg.me (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
> + if (wc->wc_flags & IB_WC_WITH_INVALIDATE) { > + if (unlikely(wc->ex.invalidate_rkey == req->mr->rkey)) { The == here should be a != I think. > + dev_err(queue->ctrl->ctrl.device, > + "Bogus remote invalidation for rkey %#x\n", > + req->mr->rkey); > + nvme_rdma_error_recovery(queue->ctrl); > + } > req->mr->need_inval = false; > - refcount_dec(&req->ref); > } else if (req->mr->need_inval) { > ret = nvme_rdma_inv_rkey(queue, req); > if (unlikely(ret < 0)) { > @@ -1347,6 +1349,8 @@ static int nvme_rdma_process_nvme_rsp(struct > nvme_rdma_queue *queue, > req->mr->rkey, ret); > nvme_rdma_error_recovery(queue->ctrl); > } > + /* return here as we can't really end the request */ > + return 0; Maybe replace the comment with /* the local invalidation completion will end the request */ Otherwise this looks fine to me. -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/nvme/host/rdma.c b/drivers/nvme/host/rdma.c index a3802de0f248..d0a5a397ad66 100644 --- a/drivers/nvme/host/rdma.c +++ b/drivers/nvme/host/rdma.c @@ -1148,8 +1148,6 @@ static int nvme_rdma_map_sg_fr(struct nvme_rdma_queue *queue, sg->type = (NVME_KEY_SGL_FMT_DATA_DESC << 4) | NVME_SGL_FMT_INVALIDATE; - refcount_inc(&req->ref); - return 0; }