]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
RDMA/hfi1: Initialize ib_device_ops struct
authorKamal Heib <kamalheib1@gmail.com>
Mon, 10 Dec 2018 19:09:34 +0000 (21:09 +0200)
committerJason Gunthorpe <jgg@mellanox.com>
Tue, 11 Dec 2018 22:15:07 +0000 (15:15 -0700)
Initialize ib_device_ops with the supported operations using
ib_set_device_ops().

Signed-off-by: Kamal Heib <kamalheib1@gmail.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
drivers/infiniband/hw/hfi1/verbs.c

index 28f754d2a8440004ab93f8c0a49dd39671fa7b4d..e42162ea59f6dc648fcfbb57625ece184e9223d8 100644 (file)
@@ -1617,6 +1617,16 @@ static int get_hw_stats(struct ib_device *ibdev, struct rdma_hw_stats *stats,
        return count;
 }
 
+static const struct ib_device_ops hfi1_dev_ops = {
+       .alloc_hw_stats = alloc_hw_stats,
+       .alloc_rdma_netdev = hfi1_vnic_alloc_rn,
+       .get_dev_fw_str = hfi1_get_dev_fw_str,
+       .get_hw_stats = get_hw_stats,
+       .modify_device = modify_device,
+       /* keep process mad in the driver */
+       .process_mad = hfi1_process_mad,
+};
+
 /**
  * hfi1_register_ib_device - register our device with the infiniband core
  * @dd: the device data structure
@@ -1660,14 +1670,8 @@ int hfi1_register_ib_device(struct hfi1_devdata *dd)
        ibdev->owner = THIS_MODULE;
        ibdev->phys_port_cnt = dd->num_pports;
        ibdev->dev.parent = &dd->pcidev->dev;
-       ibdev->modify_device = modify_device;
-       ibdev->alloc_hw_stats = alloc_hw_stats;
-       ibdev->get_hw_stats = get_hw_stats;
-       ibdev->alloc_rdma_netdev = hfi1_vnic_alloc_rn;
 
-       /* keep process mad in the driver */
-       ibdev->process_mad = hfi1_process_mad;
-       ibdev->get_dev_fw_str = hfi1_get_dev_fw_str;
+       ib_set_device_ops(ibdev, &hfi1_dev_ops);
 
        strlcpy(ibdev->node_desc, init_utsname()->nodename,
                sizeof(ibdev->node_desc));