RDMA/rxe: remove the redundant variable
authorZhu Yanjun <zyjzyj2000@gmail.com>
Wed, 15 Sep 2021 01:24:56 +0000 (21:24 -0400)
committerJason Gunthorpe <jgg@nvidia.com>
Tue, 14 Sep 2021 19:22:48 +0000 (16:22 -0300)
The variable port is not necessary. So remove it.

Link: https://lore.kernel.org/r/20210915012456.476728-1-yanjun.zhu@intel.com
Signed-off-by: Zhu Yanjun <zyjzyj2000@gmail.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
drivers/infiniband/sw/rxe/rxe_verbs.c

index 267b5a9..586ef10 100644 (file)
@@ -29,13 +29,10 @@ static int rxe_query_port(struct ib_device *dev,
                          u32 port_num, struct ib_port_attr *attr)
 {
        struct rxe_dev *rxe = to_rdev(dev);
-       struct rxe_port *port;
        int rc;
 
-       port = &rxe->port;
-
        /* *attr being zeroed by the caller, avoid zeroing it here */
-       *attr = port->attr;
+       *attr = rxe->port.attr;
 
        mutex_lock(&rxe->usdev_lock);
        rc = ib_get_eth_speed(dev, port_num, &attr->active_speed,