RDMA/irdma: Move iw device ops initialization
authorKamal Heib <kheib@redhat.com>
Mon, 15 May 2023 19:11:42 +0000 (15:11 -0400)
committerJason Gunthorpe <jgg@nvidia.com>
Wed, 17 May 2023 19:31:37 +0000 (16:31 -0300)
Move the initialization of the iw device ops to be under the declaration
of the irdma_iw_dev_ops.

Link: https://lore.kernel.org/r/20230515191142.413633-4-kheib@redhat.com
Signed-off-by: Kamal Heib <kheib@redhat.com>
Reviewed-by: Shiraz Saleem <shiraz.saleem@intel.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
drivers/infiniband/hw/irdma/verbs.c

index 9ff06feda872a0a02f87cb393d48814de4a78446..6242ab6af77fa9aaadec27418d49ee552a46bb98 100644 (file)
@@ -4450,8 +4450,16 @@ static const struct ib_device_ops irdma_roce_dev_ops = {
 };
 
 static const struct ib_device_ops irdma_iw_dev_ops = {
-       .modify_qp = irdma_modify_qp,
        .get_port_immutable = irdma_iw_port_immutable,
+       .iw_accept = irdma_accept,
+       .iw_add_ref = irdma_qp_add_ref,
+       .iw_connect = irdma_connect,
+       .iw_create_listen = irdma_create_listen,
+       .iw_destroy_listen = irdma_destroy_listen,
+       .iw_get_qp = irdma_get_qp,
+       .iw_reject = irdma_reject,
+       .iw_rem_ref = irdma_qp_rem_ref,
+       .modify_qp = irdma_modify_qp,
        .query_gid = irdma_query_gid,
 };
 
@@ -4522,14 +4530,6 @@ static void irdma_init_iw_device(struct irdma_device *iwdev)
        iwdev->ibdev.node_type = RDMA_NODE_RNIC;
        addrconf_addr_eui48((u8 *)&iwdev->ibdev.node_guid,
                            netdev->dev_addr);
-       iwdev->ibdev.ops.iw_add_ref = irdma_qp_add_ref;
-       iwdev->ibdev.ops.iw_rem_ref = irdma_qp_rem_ref;
-       iwdev->ibdev.ops.iw_get_qp = irdma_get_qp;
-       iwdev->ibdev.ops.iw_connect = irdma_connect;
-       iwdev->ibdev.ops.iw_accept = irdma_accept;
-       iwdev->ibdev.ops.iw_reject = irdma_reject;
-       iwdev->ibdev.ops.iw_create_listen = irdma_create_listen;
-       iwdev->ibdev.ops.iw_destroy_listen = irdma_destroy_listen;
        memcpy(iwdev->ibdev.iw_ifname, netdev->name,
               sizeof(iwdev->ibdev.iw_ifname));
        ib_set_device_ops(&iwdev->ibdev, &irdma_iw_dev_ops);