[PATCH rdma-next v3 03/20] RDMA/cxgb3: Initialize ib_device_ops struct

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Initialize ib_device_ops with the supported operations using
ib_set_device_ops().

Signed-off-by: Kamal Heib <kamalheib1@xxxxxxxxx>
---
 drivers/infiniband/hw/cxgb3/iwch_provider.c | 75 +++++++++++++++++------------
 1 file changed, 45 insertions(+), 30 deletions(-)

diff --git a/drivers/infiniband/hw/cxgb3/iwch_provider.c b/drivers/infiniband/hw/cxgb3/iwch_provider.c
index ebbec02cebe0..5bc5837f1ef9 100644
--- a/drivers/infiniband/hw/cxgb3/iwch_provider.c
+++ b/drivers/infiniband/hw/cxgb3/iwch_provider.c
@@ -1317,6 +1317,50 @@ static void get_dev_fw_ver_str(struct ib_device *ibdev, char *str)
 	snprintf(str, IB_FW_VERSION_NAME_MAX, "%s", info.fw_version);
 }
 
+static const struct ib_device_ops iwch_dev_ops = {
+	/* Device operations */
+	.query_device = iwch_query_device,
+	.get_dev_fw_str = get_dev_fw_ver_str,
+	/* Port operations */
+	.get_port_immutable = iwch_port_immutable,
+	.query_port = iwch_query_port,
+	/* PKey operations */
+	.query_pkey = iwch_query_pkey,
+	/* GID operations */
+	.query_gid = iwch_query_gid,
+	/* Ucontext operations */
+	.alloc_ucontext = iwch_alloc_ucontext,
+	.dealloc_ucontext = iwch_dealloc_ucontext,
+	.mmap = iwch_mmap,
+	/* PD operations */
+	.alloc_pd = iwch_allocate_pd,
+	.dealloc_pd = iwch_deallocate_pd,
+	/* QP operations */
+	.create_qp = iwch_create_qp,
+	.modify_qp = iwch_ib_modify_qp,
+	.destroy_qp = iwch_destroy_qp,
+	.post_send = iwch_post_send,
+	.post_recv = iwch_post_receive,
+	/* CQ operations */
+	.create_cq = iwch_create_cq,
+	.destroy_cq = iwch_destroy_cq,
+	.resize_cq = iwch_resize_cq,
+	.poll_cq = iwch_poll_cq,
+	.req_notify_cq = iwch_arm_cq,
+	/* MR operations */
+	.get_dma_mr = iwch_get_dma_mr,
+	.reg_user_mr = iwch_reg_user_mr,
+	.dereg_mr = iwch_dereg_mr,
+	.map_mr_sg = iwch_map_mr_sg,
+	.alloc_mr = iwch_alloc_mr,
+	/* MW operations */
+	.alloc_mw = iwch_alloc_mw,
+	.dealloc_mw = iwch_dealloc_mw,
+	/* Stats operations */
+	.alloc_hw_stats	= iwch_alloc_stats,
+	.get_hw_stats = iwch_get_mib,
+};
+
 int iwch_register_device(struct iwch_dev *dev)
 {
 	int ret;
@@ -1356,37 +1400,7 @@ int iwch_register_device(struct iwch_dev *dev)
 	dev->ibdev.phys_port_cnt = dev->rdev.port_info.nports;
 	dev->ibdev.num_comp_vectors = 1;
 	dev->ibdev.dev.parent = &dev->rdev.rnic_info.pdev->dev;
-	dev->ibdev.query_device = iwch_query_device;
-	dev->ibdev.query_port = iwch_query_port;
-	dev->ibdev.query_pkey = iwch_query_pkey;
-	dev->ibdev.query_gid = iwch_query_gid;
-	dev->ibdev.alloc_ucontext = iwch_alloc_ucontext;
-	dev->ibdev.dealloc_ucontext = iwch_dealloc_ucontext;
-	dev->ibdev.mmap = iwch_mmap;
-	dev->ibdev.alloc_pd = iwch_allocate_pd;
-	dev->ibdev.dealloc_pd = iwch_deallocate_pd;
-	dev->ibdev.create_qp = iwch_create_qp;
-	dev->ibdev.modify_qp = iwch_ib_modify_qp;
-	dev->ibdev.destroy_qp = iwch_destroy_qp;
-	dev->ibdev.create_cq = iwch_create_cq;
-	dev->ibdev.destroy_cq = iwch_destroy_cq;
-	dev->ibdev.resize_cq = iwch_resize_cq;
-	dev->ibdev.poll_cq = iwch_poll_cq;
-	dev->ibdev.get_dma_mr = iwch_get_dma_mr;
-	dev->ibdev.reg_user_mr = iwch_reg_user_mr;
-	dev->ibdev.dereg_mr = iwch_dereg_mr;
-	dev->ibdev.alloc_mw = iwch_alloc_mw;
-	dev->ibdev.dealloc_mw = iwch_dealloc_mw;
-	dev->ibdev.alloc_mr = iwch_alloc_mr;
-	dev->ibdev.map_mr_sg = iwch_map_mr_sg;
-	dev->ibdev.req_notify_cq = iwch_arm_cq;
-	dev->ibdev.post_send = iwch_post_send;
-	dev->ibdev.post_recv = iwch_post_receive;
-	dev->ibdev.alloc_hw_stats = iwch_alloc_stats;
-	dev->ibdev.get_hw_stats = iwch_get_mib;
 	dev->ibdev.uverbs_abi_ver = IWCH_UVERBS_ABI_VERSION;
-	dev->ibdev.get_port_immutable = iwch_port_immutable;
-	dev->ibdev.get_dev_fw_str = get_dev_fw_ver_str;
 
 	dev->ibdev.iwcm = kmalloc(sizeof(struct iw_cm_verbs), GFP_KERNEL);
 	if (!dev->ibdev.iwcm)
@@ -1405,6 +1419,7 @@ int iwch_register_device(struct iwch_dev *dev)
 
 	dev->ibdev.driver_id = RDMA_DRIVER_CXGB3;
 	rdma_set_device_sysfs_group(&dev->ibdev, &iwch_attr_group);
+	ib_set_device_ops(&dev->ibdev, &iwch_dev_ops);
 	ret = ib_register_device(&dev->ibdev, "cxgb3_%d", NULL);
 	if (ret)
 		kfree(dev->ibdev.iwcm);
-- 
2.14.5




[Index of Archives]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Photo]     [Yosemite News]     [Yosemite Photos]     [Linux Kernel]     [Linux SCSI]     [XFree86]

  Powered by Linux