[PATCH v2 2/3] nvme-rdma: don't complete requests before a send work request has completed
Christoph Hellwig
hch at lst.de
Mon Nov 20 03:16:40 PST 2017
> + 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.
More information about the Linux-nvme
mailing list