RDMA/core: Remove set-but-not-used variables
authorBart Van Assche <bart.vanassche@wdc.com>
Thu, 5 Jul 2018 17:51:03 +0000 (10:51 -0700)
committerJason Gunthorpe <jgg@mellanox.com>
Mon, 9 Jul 2018 18:11:22 +0000 (12:11 -0600)
Signed-off-by: Bart Van Assche <bart.vanassche@wdc.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
drivers/infiniband/core/cache.c

index c5fa67c..0bee1f4 100644 (file)
@@ -824,12 +824,9 @@ void ib_cache_gid_set_default_gid(struct ib_device *ib_dev, u8 port,
 {
        union ib_gid gid = { };
        struct ib_gid_attr gid_attr;
-       struct ib_gid_table *table;
        unsigned int gid_type;
        unsigned long mask;
 
-       table = rdma_gid_table(ib_dev, port);
-
        mask = GID_ATTR_FIND_MASK_GID_TYPE |
               GID_ATTR_FIND_MASK_DEFAULT |
               GID_ATTR_FIND_MASK_NETDEV;
@@ -1293,13 +1290,10 @@ static void ib_cache_update(struct ib_device *device,
        struct ib_pkey_cache      *pkey_cache = NULL, *old_pkey_cache;
        int                        i;
        int                        ret;
-       struct ib_gid_table       *table;
 
        if (!rdma_is_port_valid(device, port))
                return;
 
-       table = rdma_gid_table(device, port);
-
        tprops = kmalloc(sizeof *tprops, GFP_KERNEL);
        if (!tprops)
                return;