lkml.org 
[lkml]   [2020]   [Jul]   [1]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH AUTOSEL 5.7 47/53] nvme-rdma: assign completion vector correctly
    Date
    From: Max Gurtovoy <maxg@mellanox.com>

    [ Upstream commit 032a9966a22a3596addf81dacf0c1736dfedc32a ]

    The completion vector index that is given during CQ creation can't
    exceed the number of support vectors by the underlying RDMA device. This
    violation currently can accure, for example, in case one will try to
    connect with N regular read/write queues and M poll queues and the sum
    of N + M > num_supported_vectors. This will lead to failure in establish
    a connection to remote target. Instead, in that case, share a completion
    vector between queues.

    Signed-off-by: Max Gurtovoy <maxg@mellanox.com>
    Signed-off-by: Christoph Hellwig <hch@lst.de>
    Signed-off-by: Sasha Levin <sashal@kernel.org>
    ---
    drivers/nvme/host/rdma.c | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    diff --git a/drivers/nvme/host/rdma.c b/drivers/nvme/host/rdma.c
    index cac8a930396a0..1f9a45145d0d3 100644
    --- a/drivers/nvme/host/rdma.c
    +++ b/drivers/nvme/host/rdma.c
    @@ -443,7 +443,7 @@ static int nvme_rdma_create_queue_ib(struct nvme_rdma_queue *queue)
    * Spread I/O queues completion vectors according their queue index.
    * Admin queues can always go on completion vector 0.
    */
    - comp_vector = idx == 0 ? idx : idx - 1;
    + comp_vector = (idx == 0 ? idx : idx - 1) % ibdev->num_comp_vectors;

    /* Polling queues need direct cq polling context */
    if (nvme_rdma_poll_queue(queue))
    --
    2.25.1
    \
     
     \ /
      Last update: 2020-07-02 03:25    [W:4.542 / U:0.356 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site