@@ -1616,6 +1616,19 @@ 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 = {
+ /* Device operations */
+ .modify_device = modify_device,
+ .get_dev_fw_str = hfi1_get_dev_fw_str,
+ /* Port operations */
+ .alloc_rdma_netdev = hfi1_vnic_alloc_rn,
+ /* MAD operations */
+ .process_mad = hfi1_process_mad,
+ /* Stats operations */
+ .alloc_hw_stats = alloc_hw_stats,
+ .get_hw_stats = get_hw_stats,
+};
+
/**
* hfi1_register_ib_device - register our device with the infiniband core
* @dd: the device data structure
@@ -1659,14 +1672,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));
Initialize ib_device_ops with the supported operations using ib_set_device_ops(). Signed-off-by: Kamal Heib <kamalheib1@gmail.com> --- drivers/infiniband/hw/hfi1/verbs.c | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-)