OSDN Git Service

IB/qib: Remove a set-but-not-used variable
authorBart Van Assche <bvanassche@acm.org>
Wed, 27 Mar 2019 23:50:51 +0000 (16:50 -0700)
committerJason Gunthorpe <jgg@mellanox.com>
Thu, 28 Mar 2019 14:03:49 +0000 (11:03 -0300)
This patch avoids that a compiler warning is reported when building with
W=1.

Reviewed-by: Leon Romanovsky <leonro@mellanox.com>
Fixes: 49c0e2414b20 ("IB/qib: Change SDMA progression mode depending on single- or multi-rail")
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
drivers/infiniband/hw/qib/qib_user_sdma.c

index 31c523b..ef19d39 100644 (file)
@@ -225,8 +225,6 @@ qib_user_sdma_queue_create(struct device *dev, int unit, int ctxt, int sctxt)
        if (sdma_rb_node) {
                sdma_rb_node->refcount++;
        } else {
-               int ret;
-
                sdma_rb_node = kmalloc(sizeof(
                        struct qib_user_sdma_rb_node), GFP_KERNEL);
                if (!sdma_rb_node)
@@ -235,8 +233,7 @@ qib_user_sdma_queue_create(struct device *dev, int unit, int ctxt, int sctxt)
                sdma_rb_node->refcount = 1;
                sdma_rb_node->pid = current->pid;
 
-               ret = qib_user_sdma_rb_insert(&qib_user_sdma_rb_root,
-                                       sdma_rb_node);
+               qib_user_sdma_rb_insert(&qib_user_sdma_rb_root, sdma_rb_node);
        }
        pq->sdma_rb_node = sdma_rb_node;