All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device
@ 2020-04-26  9:31 Weihang Li
  2020-04-27  8:45 ` Gal Pressman
                   ` (4 more replies)
  0 siblings, 5 replies; 24+ messages in thread
From: Weihang Li @ 2020-04-26  9:31 UTC (permalink / raw)
  To: dledford, jgg
  Cc: leon, linux-rdma, linuxarm, selvin.xavier, devesh.sharma,
	somnath.kotur, sriharsha.basavapatna, bharat, galpress, sleybo,
	faisal.latif, shiraz.saleem, yishaih, mkalderon, aelior, benve,
	neescoba, pkaustub, aditr, pv-drivers, monis, kamalheib1, parav,
	markz, rd.dunlab, dennis.dalessandro

If the name of a device is assigned during ib_register_device(), some
drivers have to use dev_*() for printing before register device. Bring
assign_name() into ib_alloc_device(), so that drivers can use ibdev_*()
anywhere.

Signed-off-by: Weihang Li <liweihang@huawei.com>
---
 drivers/infiniband/core/device.c               | 85 +++++++++++++-------------
 drivers/infiniband/hw/bnxt_re/main.c           |  4 +-
 drivers/infiniband/hw/cxgb4/device.c           |  2 +-
 drivers/infiniband/hw/cxgb4/provider.c         |  2 +-
 drivers/infiniband/hw/efa/efa_main.c           |  4 +-
 drivers/infiniband/hw/hns/hns_roce_hw_v1.c     |  2 +-
 drivers/infiniband/hw/hns/hns_roce_hw_v2.c     |  2 +-
 drivers/infiniband/hw/hns/hns_roce_main.c      |  2 +-
 drivers/infiniband/hw/i40iw/i40iw_verbs.c      |  4 +-
 drivers/infiniband/hw/mlx4/main.c              |  4 +-
 drivers/infiniband/hw/mlx5/ib_rep.c            |  8 ++-
 drivers/infiniband/hw/mlx5/main.c              | 18 +++---
 drivers/infiniband/hw/mthca/mthca_main.c       |  2 +-
 drivers/infiniband/hw/mthca/mthca_provider.c   |  2 +-
 drivers/infiniband/hw/ocrdma/ocrdma_main.c     |  4 +-
 drivers/infiniband/hw/qedr/main.c              |  4 +-
 drivers/infiniband/hw/usnic/usnic_ib_main.c    |  4 +-
 drivers/infiniband/hw/vmw_pvrdma/pvrdma_main.c |  4 +-
 drivers/infiniband/sw/rxe/rxe.c                |  4 +-
 drivers/infiniband/sw/rxe/rxe.h                |  2 +-
 drivers/infiniband/sw/rxe/rxe_net.c            |  4 +-
 drivers/infiniband/sw/rxe/rxe_verbs.c          |  4 +-
 drivers/infiniband/sw/rxe/rxe_verbs.h          |  2 +-
 include/rdma/ib_verbs.h                        |  8 +--
 24 files changed, 95 insertions(+), 86 deletions(-)

diff --git a/drivers/infiniband/core/device.c b/drivers/infiniband/core/device.c
index d0b3d35..30d28da 100644
--- a/drivers/infiniband/core/device.c
+++ b/drivers/infiniband/core/device.c
@@ -557,9 +557,45 @@ static void rdma_init_coredev(struct ib_core_device *coredev,
 	write_pnet(&coredev->rdma_net, net);
 }
 
+/*
+ * Assign the unique string device name and the unique device index. This is
+ * undone by ib_dealloc_device.
+ */
+static int assign_name(struct ib_device *device, const char *name)
+{
+	static u32 last_id;
+	int ret;
+
+	down_write(&devices_rwsem);
+	/* Assign a unique name to the device */
+	if (strchr(name, '%'))
+		ret = alloc_name(device, name);
+	else
+		ret = dev_set_name(&device->dev, name);
+	if (ret)
+		goto out;
+
+	if (__ib_device_get_by_name(dev_name(&device->dev))) {
+		ret = -ENFILE;
+		goto out;
+	}
+	strlcpy(device->name, dev_name(&device->dev), IB_DEVICE_NAME_MAX);
+
+	ret = xa_alloc_cyclic(&devices, &device->index, device, xa_limit_31b,
+			      &last_id, GFP_KERNEL);
+	if (ret > 0)
+		ret = 0;
+
+out:
+	up_write(&devices_rwsem);
+	return ret;
+}
+
 /**
  * _ib_alloc_device - allocate an IB device struct
  * @size:size of structure to allocate
+ * @name: unique string device name. This may include a '%' which will
+ * cause a unique index to be added to the passed device name.
  *
  * Low-level drivers should use ib_alloc_device() to allocate &struct
  * ib_device.  @size is the size of the structure to be allocated,
@@ -567,7 +603,7 @@ static void rdma_init_coredev(struct ib_core_device *coredev,
  * ib_dealloc_device() must be used to free structures allocated with
  * ib_alloc_device().
  */
-struct ib_device *_ib_alloc_device(size_t size)
+struct ib_device *_ib_alloc_device(size_t size, const char *name)
 {
 	struct ib_device *device;
 
@@ -586,6 +622,11 @@ struct ib_device *_ib_alloc_device(size_t size)
 	device->groups[0] = &ib_dev_attr_group;
 	rdma_init_coredev(&device->coredev, device, &init_net);
 
+	if (assign_name(device, name)) {
+		kfree(device);
+		return NULL;
+	}
+
 	INIT_LIST_HEAD(&device->event_handler_list);
 	spin_lock_init(&device->qp_open_list_lock);
 	init_rwsem(&device->event_handler_rwsem);
@@ -1132,40 +1173,6 @@ static __net_init int rdma_dev_init_net(struct net *net)
 	return ret;
 }
 
-/*
- * Assign the unique string device name and the unique device index. This is
- * undone by ib_dealloc_device.
- */
-static int assign_name(struct ib_device *device, const char *name)
-{
-	static u32 last_id;
-	int ret;
-
-	down_write(&devices_rwsem);
-	/* Assign a unique name to the device */
-	if (strchr(name, '%'))
-		ret = alloc_name(device, name);
-	else
-		ret = dev_set_name(&device->dev, name);
-	if (ret)
-		goto out;
-
-	if (__ib_device_get_by_name(dev_name(&device->dev))) {
-		ret = -ENFILE;
-		goto out;
-	}
-	strlcpy(device->name, dev_name(&device->dev), IB_DEVICE_NAME_MAX);
-
-	ret = xa_alloc_cyclic(&devices, &device->index, device, xa_limit_31b,
-			&last_id, GFP_KERNEL);
-	if (ret > 0)
-		ret = 0;
-
-out:
-	up_write(&devices_rwsem);
-	return ret;
-}
-
 static void setup_dma_device(struct ib_device *device)
 {
 	struct device *parent = device->dev.parent;
@@ -1330,8 +1337,6 @@ static int enable_device_and_get(struct ib_device *device)
 /**
  * ib_register_device - Register an IB device with IB core
  * @device: Device to register
- * @name: unique string device name. This may include a '%' which will
- * cause a unique index to be added to the passed device name.
  *
  * Low-level drivers use ib_register_device() to register their
  * devices with the IB core.  All registered clients will receive a
@@ -1342,14 +1347,10 @@ static int enable_device_and_get(struct ib_device *device)
  * asynchronously then the device pointer may become freed as soon as this
  * function returns.
  */
-int ib_register_device(struct ib_device *device, const char *name)
+int ib_register_device(struct ib_device *device)
 {
 	int ret;
 
-	ret = assign_name(device, name);
-	if (ret)
-		return ret;
-
 	ret = setup_device(device);
 	if (ret)
 		return ret;
diff --git a/drivers/infiniband/hw/bnxt_re/main.c b/drivers/infiniband/hw/bnxt_re/main.c
index b12fbc8..8ac5b2a 100644
--- a/drivers/infiniband/hw/bnxt_re/main.c
+++ b/drivers/infiniband/hw/bnxt_re/main.c
@@ -726,7 +726,7 @@ static int bnxt_re_register_ib(struct bnxt_re_dev *rdev)
 	if (ret)
 		return ret;
 
-	return ib_register_device(ibdev, "bnxt_re%d");
+	return ib_register_device(ibdev);
 }
 
 static void bnxt_re_dev_remove(struct bnxt_re_dev *rdev)
@@ -746,7 +746,7 @@ static struct bnxt_re_dev *bnxt_re_dev_add(struct net_device *netdev,
 	struct bnxt_re_dev *rdev;
 
 	/* Allocate bnxt_re_dev instance here */
-	rdev = ib_alloc_device(bnxt_re_dev, ibdev);
+	rdev = ib_alloc_device(bnxt_re_dev, ibdev, "bnxt_re%d");
 	if (!rdev) {
 		ibdev_err(NULL, "%s: bnxt_re_dev allocation failure!",
 			  ROCE_DRV_MODULE_NAME);
diff --git a/drivers/infiniband/hw/cxgb4/device.c b/drivers/infiniband/hw/cxgb4/device.c
index 599340c..7968060 100644
--- a/drivers/infiniband/hw/cxgb4/device.c
+++ b/drivers/infiniband/hw/cxgb4/device.c
@@ -978,7 +978,7 @@ static struct c4iw_dev *c4iw_alloc(const struct cxgb4_lld_info *infop)
 		pr_info("%s: On-Chip Queues not supported on this device\n",
 			pci_name(infop->pdev));
 
-	devp = ib_alloc_device(c4iw_dev, ibdev);
+	devp = ib_alloc_device(c4iw_dev, ibdev, "cxgb4_%d");
 	if (!devp) {
 		pr_err("Cannot allocate ib device\n");
 		return ERR_PTR(-ENOMEM);
diff --git a/drivers/infiniband/hw/cxgb4/provider.c b/drivers/infiniband/hw/cxgb4/provider.c
index ba83d94..4afd6a5 100644
--- a/drivers/infiniband/hw/cxgb4/provider.c
+++ b/drivers/infiniband/hw/cxgb4/provider.c
@@ -583,7 +583,7 @@ void c4iw_register_device(struct work_struct *work)
 	ret = set_netdevs(&dev->ibdev, &dev->rdev);
 	if (ret)
 		goto err_dealloc_ctx;
-	ret = ib_register_device(&dev->ibdev, "cxgb4_%d");
+	ret = ib_register_device(&dev->ibdev);
 	if (ret)
 		goto err_dealloc_ctx;
 	return;
diff --git a/drivers/infiniband/hw/efa/efa_main.c b/drivers/infiniband/hw/efa/efa_main.c
index faf3ff1..f004570 100644
--- a/drivers/infiniband/hw/efa/efa_main.c
+++ b/drivers/infiniband/hw/efa/efa_main.c
@@ -279,7 +279,7 @@ static int efa_ib_device_add(struct efa_dev *dev)
 
 	ib_set_device_ops(&dev->ibdev, &efa_dev_ops);
 
-	err = ib_register_device(&dev->ibdev, "efa_%d");
+	err = ib_register_device(&dev->ibdev);
 	if (err)
 		goto err_release_doorbell_bar;
 
@@ -385,7 +385,7 @@ static struct efa_dev *efa_probe_device(struct pci_dev *pdev)
 
 	pci_set_master(pdev);
 
-	dev = ib_alloc_device(efa_dev, ibdev);
+	dev = ib_alloc_device(efa_dev, ibdev, "efa_%d");
 	if (!dev) {
 		dev_err(&pdev->dev, "Device alloc failed\n");
 		err = -ENOMEM;
diff --git a/drivers/infiniband/hw/hns/hns_roce_hw_v1.c b/drivers/infiniband/hw/hns/hns_roce_hw_v1.c
index 49775cd..0ce4406 100644
--- a/drivers/infiniband/hw/hns/hns_roce_hw_v1.c
+++ b/drivers/infiniband/hw/hns/hns_roce_hw_v1.c
@@ -4629,7 +4629,7 @@ static int hns_roce_probe(struct platform_device *pdev)
 	struct hns_roce_dev *hr_dev;
 	struct device *dev = &pdev->dev;
 
-	hr_dev = ib_alloc_device(hns_roce_dev, ib_dev);
+	hr_dev = ib_alloc_device(hns_roce_dev, ib_dev, "hns_%d");
 	if (!hr_dev)
 		return -ENOMEM;
 
diff --git a/drivers/infiniband/hw/hns/hns_roce_hw_v2.c b/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
index 2a8c389..5560d79 100644
--- a/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
+++ b/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
@@ -6017,7 +6017,7 @@ static int __hns_roce_hw_v2_init_instance(struct hnae3_handle *handle)
 	struct hns_roce_dev *hr_dev;
 	int ret;
 
-	hr_dev = ib_alloc_device(hns_roce_dev, ib_dev);
+	hr_dev = ib_alloc_device(hns_roce_dev, ib_dev, "hns%d");
 	if (!hr_dev)
 		return -ENOMEM;
 
diff --git a/drivers/infiniband/hw/hns/hns_roce_main.c b/drivers/infiniband/hw/hns/hns_roce_main.c
index d0031d5..c26a67e 100644
--- a/drivers/infiniband/hw/hns/hns_roce_main.c
+++ b/drivers/infiniband/hw/hns/hns_roce_main.c
@@ -546,7 +546,7 @@ static int hns_roce_register_device(struct hns_roce_dev *hr_dev)
 		if (ret)
 			return ret;
 	}
-	ret = ib_register_device(ib_dev, "hns_%d");
+	ret = ib_register_device(ib_dev);
 	if (ret) {
 		dev_err(dev, "ib_register_device failed!\n");
 		return ret;
diff --git a/drivers/infiniband/hw/i40iw/i40iw_verbs.c b/drivers/infiniband/hw/i40iw/i40iw_verbs.c
index 1b6fb13..ccb0d70 100644
--- a/drivers/infiniband/hw/i40iw/i40iw_verbs.c
+++ b/drivers/infiniband/hw/i40iw/i40iw_verbs.c
@@ -2692,7 +2692,7 @@ static struct i40iw_ib_device *i40iw_init_rdma_device(struct i40iw_device *iwdev
 	struct net_device *netdev = iwdev->netdev;
 	struct pci_dev *pcidev = (struct pci_dev *)iwdev->hw.dev_context;
 
-	iwibdev = ib_alloc_device(i40iw_ib_device, ibdev);
+	iwibdev = ib_alloc_device(i40iw_ib_device, ibdev, "i40iw%d");
 	if (!iwibdev) {
 		i40iw_pr_err("iwdev == NULL\n");
 		return NULL;
@@ -2780,7 +2780,7 @@ int i40iw_register_rdma_device(struct i40iw_device *iwdev)
 	if (ret)
 		goto error;
 
-	ret = ib_register_device(&iwibdev->ibdev, "i40iw%d");
+	ret = ib_register_device(&iwibdev->ibdev);
 	if (ret)
 		goto error;
 
diff --git a/drivers/infiniband/hw/mlx4/main.c b/drivers/infiniband/hw/mlx4/main.c
index a66518a..94a93f0 100644
--- a/drivers/infiniband/hw/mlx4/main.c
+++ b/drivers/infiniband/hw/mlx4/main.c
@@ -2644,7 +2644,7 @@ static void *mlx4_ib_add(struct mlx4_dev *dev)
 	if (num_ports == 0)
 		return NULL;
 
-	ibdev = ib_alloc_device(mlx4_ib_dev, ib_dev);
+	ibdev = ib_alloc_device(mlx4_ib_dev, ib_dev, "mlx4_%d");
 	if (!ibdev) {
 		dev_err(&dev->persist->pdev->dev,
 			"Device struct alloc failed\n");
@@ -2863,7 +2863,7 @@ static void *mlx4_ib_add(struct mlx4_dev *dev)
 		goto err_steer_free_bitmap;
 
 	rdma_set_device_sysfs_group(&ibdev->ib_dev, &mlx4_attr_group);
-	if (ib_register_device(&ibdev->ib_dev, "mlx4_%d"))
+	if (ib_register_device(&ibdev->ib_dev))
 		goto err_diag_counters;
 
 	if (mlx4_ib_mad_init(ibdev))
diff --git a/drivers/infiniband/hw/mlx5/ib_rep.c b/drivers/infiniband/hw/mlx5/ib_rep.c
index 5c3d052..9871250 100644
--- a/drivers/infiniband/hw/mlx5/ib_rep.c
+++ b/drivers/infiniband/hw/mlx5/ib_rep.c
@@ -32,6 +32,7 @@ mlx5_ib_vport_rep_load(struct mlx5_core_dev *dev, struct mlx5_eswitch_rep *rep)
 	int num_ports = mlx5_eswitch_get_total_vports(dev);
 	const struct mlx5_ib_profile *profile;
 	struct mlx5_ib_dev *ibdev;
+	const char *name;
 	int vport_index;
 
 	if (rep->vport == MLX5_VPORT_UPLINK)
@@ -39,7 +40,12 @@ mlx5_ib_vport_rep_load(struct mlx5_core_dev *dev, struct mlx5_eswitch_rep *rep)
 	else
 		return mlx5_ib_set_vport_rep(dev, rep);
 
-	ibdev = ib_alloc_device(mlx5_ib_dev, ib_dev);
+	if (!mlx5_lag_is_roce(dev))
+		name = "mlx5_%d";
+	else
+		name = "mlx5_bond_%d";
+
+	ibdev = ib_alloc_device(mlx5_ib_dev, ib_dev, name);
 	if (!ibdev)
 		return -ENOMEM;
 
diff --git a/drivers/infiniband/hw/mlx5/main.c b/drivers/infiniband/hw/mlx5/main.c
index 6679756..c804a18 100644
--- a/drivers/infiniband/hw/mlx5/main.c
+++ b/drivers/infiniband/hw/mlx5/main.c
@@ -7036,14 +7036,9 @@ static void mlx5_ib_stage_bfrag_cleanup(struct mlx5_ib_dev *dev)
 
 static int mlx5_ib_stage_ib_reg_init(struct mlx5_ib_dev *dev)
 {
-	const char *name;
-
 	rdma_set_device_sysfs_group(&dev->ib_dev, &mlx5_attr_group);
-	if (!mlx5_lag_is_roce(dev->mdev))
-		name = "mlx5_%d";
-	else
-		name = "mlx5_bond_%d";
-	return ib_register_device(&dev->ib_dev, name);
+
+	return ib_register_device(&dev->ib_dev);
 }
 
 static void mlx5_ib_stage_pre_ib_reg_umr_cleanup(struct mlx5_ib_dev *dev)
@@ -7314,6 +7309,7 @@ static void *mlx5_ib_add(struct mlx5_core_dev *mdev)
 	enum rdma_link_layer ll;
 	struct mlx5_ib_dev *dev;
 	int port_type_cap;
+	const char *name;
 	int num_ports;
 
 	printk_once(KERN_INFO "%s", mlx5_version);
@@ -7333,7 +7329,13 @@ static void *mlx5_ib_add(struct mlx5_core_dev *mdev)
 
 	num_ports = max(MLX5_CAP_GEN(mdev, num_ports),
 			MLX5_CAP_GEN(mdev, num_vhca_ports));
-	dev = ib_alloc_device(mlx5_ib_dev, ib_dev);
+
+	if (!mlx5_lag_is_roce(mdev))
+		name = "mlx5_%d";
+	else
+		name = "mlx5_bond_%d";
+
+	dev = ib_alloc_device(mlx5_ib_dev, ib_dev, name);
 	if (!dev)
 		return NULL;
 	dev->port = kcalloc(num_ports, sizeof(*dev->port),
diff --git a/drivers/infiniband/hw/mthca/mthca_main.c b/drivers/infiniband/hw/mthca/mthca_main.c
index fe9654a..9c8c88c 100644
--- a/drivers/infiniband/hw/mthca/mthca_main.c
+++ b/drivers/infiniband/hw/mthca/mthca_main.c
@@ -961,7 +961,7 @@ static int __mthca_init_one(struct pci_dev *pdev, int hca_type)
 	/* We can handle large RDMA requests, so allow larger segments. */
 	dma_set_max_seg_size(&pdev->dev, 1024 * 1024 * 1024);
 
-	mdev = ib_alloc_device(mthca_dev, ib_dev);
+	mdev = ib_alloc_device(mthca_dev, ib_dev, "mthca%d");
 	if (!mdev) {
 		dev_err(&pdev->dev, "Device struct alloc failed, "
 			"aborting.\n");
diff --git a/drivers/infiniband/hw/mthca/mthca_provider.c b/drivers/infiniband/hw/mthca/mthca_provider.c
index 69a3e4f..8384fe2 100644
--- a/drivers/infiniband/hw/mthca/mthca_provider.c
+++ b/drivers/infiniband/hw/mthca/mthca_provider.c
@@ -1294,7 +1294,7 @@ int mthca_register_device(struct mthca_dev *dev)
 	mutex_init(&dev->cap_mask_mutex);
 
 	rdma_set_device_sysfs_group(&dev->ib_dev, &mthca_attr_group);
-	ret = ib_register_device(&dev->ib_dev, "mthca%d");
+	ret = ib_register_device(&dev->ib_dev);
 	if (ret)
 		return ret;
 
diff --git a/drivers/infiniband/hw/ocrdma/ocrdma_main.c b/drivers/infiniband/hw/ocrdma/ocrdma_main.c
index d8c47d2..c087a06 100644
--- a/drivers/infiniband/hw/ocrdma/ocrdma_main.c
+++ b/drivers/infiniband/hw/ocrdma/ocrdma_main.c
@@ -255,7 +255,7 @@ static int ocrdma_register_device(struct ocrdma_dev *dev)
 	if (ret)
 		return ret;
 
-	return ib_register_device(&dev->ibdev, "ocrdma%d");
+	return ib_register_device(&dev->ibdev);
 }
 
 static int ocrdma_alloc_resources(struct ocrdma_dev *dev)
@@ -307,7 +307,7 @@ static struct ocrdma_dev *ocrdma_add(struct be_dev_info *dev_info)
 	u8 lstate = 0;
 	struct ocrdma_dev *dev;
 
-	dev = ib_alloc_device(ocrdma_dev, ibdev);
+	dev = ib_alloc_device(ocrdma_dev, ibdev, "ocrdma%d");
 	if (!dev) {
 		pr_err("Unable to allocate ib device\n");
 		return NULL;
diff --git a/drivers/infiniband/hw/qedr/main.c b/drivers/infiniband/hw/qedr/main.c
index dcdc85a..1421e33 100644
--- a/drivers/infiniband/hw/qedr/main.c
+++ b/drivers/infiniband/hw/qedr/main.c
@@ -287,7 +287,7 @@ static int qedr_register_device(struct qedr_dev *dev)
 	if (rc)
 		return rc;
 
-	return ib_register_device(&dev->ibdev, "qedr%d");
+	return ib_register_device(&dev->ibdev);
 }
 
 /* This function allocates fast-path status block memory */
@@ -854,7 +854,7 @@ static struct qedr_dev *qedr_add(struct qed_dev *cdev, struct pci_dev *pdev,
 	struct qedr_dev *dev;
 	int rc = 0;
 
-	dev = ib_alloc_device(qedr_dev, ibdev);
+	dev = ib_alloc_device(qedr_dev, ibdev, "qedr%d");
 	if (!dev) {
 		pr_err("Unable to allocate ib device\n");
 		return NULL;
diff --git a/drivers/infiniband/hw/usnic/usnic_ib_main.c b/drivers/infiniband/hw/usnic/usnic_ib_main.c
index c9abe1c..caa3504 100644
--- a/drivers/infiniband/hw/usnic/usnic_ib_main.c
+++ b/drivers/infiniband/hw/usnic/usnic_ib_main.c
@@ -376,7 +376,7 @@ static void *usnic_ib_device_add(struct pci_dev *dev)
 	usnic_dbg("\n");
 	netdev = pci_get_drvdata(dev);
 
-	us_ibdev = ib_alloc_device(usnic_ib_dev, ib_dev);
+	us_ibdev = ib_alloc_device(usnic_ib_dev, ib_dev, "usnic_%d");
 	if (!us_ibdev) {
 		usnic_err("Device %s context alloc failed\n",
 				netdev_name(pci_get_drvdata(dev)));
@@ -427,7 +427,7 @@ static void *usnic_ib_device_add(struct pci_dev *dev)
 	if (ret)
 		goto err_fwd_dealloc;
 
-	if (ib_register_device(&us_ibdev->ib_dev, "usnic_%d"))
+	if (ib_register_device(&us_ibdev->ib_dev))
 		goto err_fwd_dealloc;
 
 	usnic_fwd_set_mtu(us_ibdev->ufdev, us_ibdev->netdev->mtu);
diff --git a/drivers/infiniband/hw/vmw_pvrdma/pvrdma_main.c b/drivers/infiniband/hw/vmw_pvrdma/pvrdma_main.c
index e580ae9..3a0e418 100644
--- a/drivers/infiniband/hw/vmw_pvrdma/pvrdma_main.c
+++ b/drivers/infiniband/hw/vmw_pvrdma/pvrdma_main.c
@@ -270,7 +270,7 @@ static int pvrdma_register_device(struct pvrdma_dev *dev)
 	spin_lock_init(&dev->srq_tbl_lock);
 	rdma_set_device_sysfs_group(&dev->ib_dev, &pvrdma_attr_group);
 
-	ret = ib_register_device(&dev->ib_dev, "vmw_pvrdma%d");
+	ret = ib_register_device(&dev->ib_dev);
 	if (ret)
 		goto err_srq_free;
 
@@ -789,7 +789,7 @@ static int pvrdma_pci_probe(struct pci_dev *pdev,
 	dev_dbg(&pdev->dev, "initializing driver %s\n", pci_name(pdev));
 
 	/* Allocate zero-out device */
-	dev = ib_alloc_device(pvrdma_dev, ib_dev);
+	dev = ib_alloc_device(pvrdma_dev, ib_dev, "vmw_pvrdma%d");
 	if (!dev) {
 		dev_err(&pdev->dev, "failed to allocate IB device\n");
 		return -ENOMEM;
diff --git a/drivers/infiniband/sw/rxe/rxe.c b/drivers/infiniband/sw/rxe/rxe.c
index 5642eef..71e211c 100644
--- a/drivers/infiniband/sw/rxe/rxe.c
+++ b/drivers/infiniband/sw/rxe/rxe.c
@@ -292,7 +292,7 @@ void rxe_set_mtu(struct rxe_dev *rxe, unsigned int ndev_mtu)
 /* called by ifc layer to create new rxe device.
  * The caller should allocate memory for rxe by calling ib_alloc_device.
  */
-int rxe_add(struct rxe_dev *rxe, unsigned int mtu, const char *ibdev_name)
+int rxe_add(struct rxe_dev *rxe, unsigned int mtu)
 {
 	int err;
 
@@ -302,7 +302,7 @@ int rxe_add(struct rxe_dev *rxe, unsigned int mtu, const char *ibdev_name)
 
 	rxe_set_mtu(rxe, mtu);
 
-	return rxe_register_device(rxe, ibdev_name);
+	return rxe_register_device(rxe);
 }
 
 static int rxe_newlink(const char *ibdev_name, struct net_device *ndev)
diff --git a/drivers/infiniband/sw/rxe/rxe.h b/drivers/infiniband/sw/rxe/rxe.h
index fb07eed..8b7e9c9 100644
--- a/drivers/infiniband/sw/rxe/rxe.h
+++ b/drivers/infiniband/sw/rxe/rxe.h
@@ -90,7 +90,7 @@ static inline u32 rxe_crc32(struct rxe_dev *rxe,
 
 void rxe_set_mtu(struct rxe_dev *rxe, unsigned int dev_mtu);
 
-int rxe_add(struct rxe_dev *rxe, unsigned int mtu, const char *ibdev_name);
+int rxe_add(struct rxe_dev *rxe, unsigned int mtu);
 
 void rxe_rcv(struct sk_buff *skb);
 
diff --git a/drivers/infiniband/sw/rxe/rxe_net.c b/drivers/infiniband/sw/rxe/rxe_net.c
index 312c2fc..cffa7b1 100644
--- a/drivers/infiniband/sw/rxe/rxe_net.c
+++ b/drivers/infiniband/sw/rxe/rxe_net.c
@@ -530,13 +530,13 @@ int rxe_net_add(const char *ibdev_name, struct net_device *ndev)
 	int err;
 	struct rxe_dev *rxe = NULL;
 
-	rxe = ib_alloc_device(rxe_dev, ib_dev);
+	rxe = ib_alloc_device(rxe_dev, ib_dev, ibdev_name);
 	if (!rxe)
 		return -ENOMEM;
 
 	rxe->ndev = ndev;
 
-	err = rxe_add(rxe, ndev->mtu, ibdev_name);
+	err = rxe_add(rxe, ndev->mtu);
 	if (err) {
 		ib_dealloc_device(&rxe->ib_dev);
 		return err;
diff --git a/drivers/infiniband/sw/rxe/rxe_verbs.c b/drivers/infiniband/sw/rxe/rxe_verbs.c
index 9dd4bd7..0dc4ca3 100644
--- a/drivers/infiniband/sw/rxe/rxe_verbs.c
+++ b/drivers/infiniband/sw/rxe/rxe_verbs.c
@@ -1159,7 +1159,7 @@ static const struct ib_device_ops rxe_dev_ops = {
 	INIT_RDMA_OBJ_SIZE(ib_ucontext, rxe_ucontext, ibuc),
 };
 
-int rxe_register_device(struct rxe_dev *rxe, const char *ibdev_name)
+int rxe_register_device(struct rxe_dev *rxe)
 {
 	int err;
 	struct ib_device *dev = &rxe->ib_dev;
@@ -1228,7 +1228,7 @@ int rxe_register_device(struct rxe_dev *rxe, const char *ibdev_name)
 	rxe->tfm = tfm;
 
 	rdma_set_device_sysfs_group(dev, &rxe_attr_group);
-	err = ib_register_device(dev, ibdev_name);
+	err = ib_register_device(dev);
 	if (err)
 		pr_warn("%s failed with error %d\n", __func__, err);
 
diff --git a/drivers/infiniband/sw/rxe/rxe_verbs.h b/drivers/infiniband/sw/rxe/rxe_verbs.h
index 92de39c..e078af6 100644
--- a/drivers/infiniband/sw/rxe/rxe_verbs.h
+++ b/drivers/infiniband/sw/rxe/rxe_verbs.h
@@ -466,7 +466,7 @@ static inline struct rxe_mem *to_rmw(struct ib_mw *mw)
 	return mw ? container_of(mw, struct rxe_mem, ibmw) : NULL;
 }
 
-int rxe_register_device(struct rxe_dev *rxe, const char *ibdev_name);
+int rxe_register_device(struct rxe_dev *rxe);
 
 void rxe_mc_cleanup(struct rxe_pool_entry *arg);
 
diff --git a/include/rdma/ib_verbs.h b/include/rdma/ib_verbs.h
index bbc5cfb..37624e2 100644
--- a/include/rdma/ib_verbs.h
+++ b/include/rdma/ib_verbs.h
@@ -2767,18 +2767,18 @@ struct ib_block_iter {
 	unsigned int __pg_bit;		/* alignment of current block */
 };
 
-struct ib_device *_ib_alloc_device(size_t size);
-#define ib_alloc_device(drv_struct, member)                                    \
+struct ib_device *_ib_alloc_device(size_t size, const char *name);
+#define ib_alloc_device(drv_struct, member, name)                              \
 	container_of(_ib_alloc_device(sizeof(struct drv_struct) +              \
 				      BUILD_BUG_ON_ZERO(offsetof(              \
-					      struct drv_struct, member))),    \
+					    struct drv_struct, member)), name),\
 		     struct drv_struct, member)
 
 void ib_dealloc_device(struct ib_device *device);
 
 void ib_get_device_fw_str(struct ib_device *device, char *str);
 
-int ib_register_device(struct ib_device *device, const char *name);
+int ib_register_device(struct ib_device *device);
 void ib_unregister_device(struct ib_device *device);
 void ib_unregister_driver(enum rdma_driver_id driver_id);
 void ib_unregister_device_and_put(struct ib_device *device);
-- 
2.8.1


^ permalink raw reply related	[flat|nested] 24+ messages in thread

* Re: [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device
  2020-04-26  9:31 [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device Weihang Li
@ 2020-04-27  8:45 ` Gal Pressman
  2020-04-27  9:02   ` liweihang
  2020-04-27 11:47 ` Leon Romanovsky
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 24+ messages in thread
From: Gal Pressman @ 2020-04-27  8:45 UTC (permalink / raw)
  To: Weihang Li, dledford, jgg
  Cc: leon, linux-rdma, linuxarm, selvin.xavier, devesh.sharma,
	somnath.kotur, sriharsha.basavapatna, bharat, sleybo,
	faisal.latif, shiraz.saleem, yishaih, mkalderon, aelior, benve,
	neescoba, pkaustub, aditr, pv-drivers, monis, kamalheib1, parav,
	markz, rd.dunlab, dennis.dalessandro

On 26/04/2020 12:31, Weihang Li wrote:
> If the name of a device is assigned during ib_register_device(), some
> drivers have to use dev_*() for printing before register device. Bring
> assign_name() into ib_alloc_device(), so that drivers can use ibdev_*()
> anywhere.
> 
> Signed-off-by: Weihang Li <liweihang@huawei.com>

Reviewed-by: Gal Pressman <galpress@amazon.com>

[...]

> diff --git a/drivers/infiniband/hw/hns/hns_roce_hw_v2.c b/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
> index 2a8c389..5560d79 100644
> --- a/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
> +++ b/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
> @@ -6017,7 +6017,7 @@ static int __hns_roce_hw_v2_init_instance(struct hnae3_handle *handle)
>  	struct hns_roce_dev *hr_dev;
>  	int ret;
>  
> -	hr_dev = ib_alloc_device(hns_roce_dev, ib_dev);
> +	hr_dev = ib_alloc_device(hns_roce_dev, ib_dev, "hns%d");

This name is missing an underscore.
As some of the drivers now pass the name in two call sites, it's better to
define it in one place in order to prevent mistakes like these.

^ permalink raw reply	[flat|nested] 24+ messages in thread

* Re: [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device
  2020-04-27  8:45 ` Gal Pressman
@ 2020-04-27  9:02   ` liweihang
  0 siblings, 0 replies; 24+ messages in thread
From: liweihang @ 2020-04-27  9:02 UTC (permalink / raw)
  To: Gal Pressman, dledford, jgg
  Cc: leon, linux-rdma, Linuxarm, selvin.xavier, devesh.sharma,
	somnath.kotur, sriharsha.basavapatna, bharat, sleybo,
	faisal.latif, shiraz.saleem, yishaih, mkalderon, aelior, benve,
	neescoba, pkaustub, aditr, pv-drivers, monis, kamalheib1, parav,
	markz, rd.dunlab, dennis.dalessandro

On 2020/4/27 16:45, Gal Pressman wrote:
> On 26/04/2020 12:31, Weihang Li wrote:
>> If the name of a device is assigned during ib_register_device(), some
>> drivers have to use dev_*() for printing before register device. Bring
>> assign_name() into ib_alloc_device(), so that drivers can use ibdev_*()
>> anywhere.
>>
>> Signed-off-by: Weihang Li <liweihang@huawei.com>
> 
> Reviewed-by: Gal Pressman <galpress@amazon.com>
> 
> [...]
> 
>> diff --git a/drivers/infiniband/hw/hns/hns_roce_hw_v2.c b/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
>> index 2a8c389..5560d79 100644
>> --- a/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
>> +++ b/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
>> @@ -6017,7 +6017,7 @@ static int __hns_roce_hw_v2_init_instance(struct hnae3_handle *handle)
>>  	struct hns_roce_dev *hr_dev;
>>  	int ret;
>>  
>> -	hr_dev = ib_alloc_device(hns_roce_dev, ib_dev);
>> +	hr_dev = ib_alloc_device(hns_roce_dev, ib_dev, "hns%d");
> 
> This name is missing an underscore.
> As some of the drivers now pass the name in two call sites, it's better to
> define it in one place in order to prevent mistakes like these.
> 

Hi Gal,

Thanks for your reminder :) Will fix it and consider using a macro instead.

Weihang

^ permalink raw reply	[flat|nested] 24+ messages in thread

* Re: [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device
  2020-04-26  9:31 [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device Weihang Li
  2020-04-27  8:45 ` Gal Pressman
@ 2020-04-27 11:47 ` Leon Romanovsky
  2020-04-27 11:52   ` Jason Gunthorpe
  2020-04-28  1:29   ` liweihang
  2020-04-27 17:55 ` Saleem, Shiraz
                   ` (2 subsequent siblings)
  4 siblings, 2 replies; 24+ messages in thread
From: Leon Romanovsky @ 2020-04-27 11:47 UTC (permalink / raw)
  To: Weihang Li
  Cc: dledford, jgg, linux-rdma, linuxarm, selvin.xavier,
	devesh.sharma, somnath.kotur, sriharsha.basavapatna, bharat,
	galpress, sleybo, faisal.latif, shiraz.saleem, yishaih,
	mkalderon, aelior, benve, neescoba, pkaustub, aditr, pv-drivers,
	monis, kamalheib1, parav, markz, rd.dunlab, dennis.dalessandro

On Sun, Apr 26, 2020 at 05:31:57PM +0800, Weihang Li wrote:
> If the name of a device is assigned during ib_register_device(), some
> drivers have to use dev_*() for printing before register device. Bring
> assign_name() into ib_alloc_device(), so that drivers can use ibdev_*()
> anywhere.
>
> Signed-off-by: Weihang Li <liweihang@huawei.com>
> ---
>  drivers/infiniband/core/device.c               | 85 +++++++++++++-------------
>  drivers/infiniband/hw/bnxt_re/main.c           |  4 +-
>  drivers/infiniband/hw/cxgb4/device.c           |  2 +-
>  drivers/infiniband/hw/cxgb4/provider.c         |  2 +-
>  drivers/infiniband/hw/efa/efa_main.c           |  4 +-
>  drivers/infiniband/hw/hns/hns_roce_hw_v1.c     |  2 +-
>  drivers/infiniband/hw/hns/hns_roce_hw_v2.c     |  2 +-
>  drivers/infiniband/hw/hns/hns_roce_main.c      |  2 +-
>  drivers/infiniband/hw/i40iw/i40iw_verbs.c      |  4 +-
>  drivers/infiniband/hw/mlx4/main.c              |  4 +-
>  drivers/infiniband/hw/mlx5/ib_rep.c            |  8 ++-
>  drivers/infiniband/hw/mlx5/main.c              | 18 +++---
>  drivers/infiniband/hw/mthca/mthca_main.c       |  2 +-
>  drivers/infiniband/hw/mthca/mthca_provider.c   |  2 +-
>  drivers/infiniband/hw/ocrdma/ocrdma_main.c     |  4 +-
>  drivers/infiniband/hw/qedr/main.c              |  4 +-
>  drivers/infiniband/hw/usnic/usnic_ib_main.c    |  4 +-
>  drivers/infiniband/hw/vmw_pvrdma/pvrdma_main.c |  4 +-
>  drivers/infiniband/sw/rxe/rxe.c                |  4 +-
>  drivers/infiniband/sw/rxe/rxe.h                |  2 +-
>  drivers/infiniband/sw/rxe/rxe_net.c            |  4 +-
>  drivers/infiniband/sw/rxe/rxe_verbs.c          |  4 +-
>  drivers/infiniband/sw/rxe/rxe_verbs.h          |  2 +-
>  include/rdma/ib_verbs.h                        |  8 +--
>  24 files changed, 95 insertions(+), 86 deletions(-)
>
> diff --git a/drivers/infiniband/core/device.c b/drivers/infiniband/core/device.c
> index d0b3d35..30d28da 100644
> --- a/drivers/infiniband/core/device.c
> +++ b/drivers/infiniband/core/device.c
> @@ -557,9 +557,45 @@ static void rdma_init_coredev(struct ib_core_device *coredev,
>  	write_pnet(&coredev->rdma_net, net);
>  }
>
> +/*
> + * Assign the unique string device name and the unique device index. This is
> + * undone by ib_dealloc_device.
> + */
> +static int assign_name(struct ib_device *device, const char *name)
> +{
> +	static u32 last_id;
> +	int ret;
> +
> +	down_write(&devices_rwsem);
> +	/* Assign a unique name to the device */
> +	if (strchr(name, '%'))
> +		ret = alloc_name(device, name);
> +	else
> +		ret = dev_set_name(&device->dev, name);
> +	if (ret)
> +		goto out;
> +
> +	if (__ib_device_get_by_name(dev_name(&device->dev))) {
> +		ret = -ENFILE;
> +		goto out;
> +	}
> +	strlcpy(device->name, dev_name(&device->dev), IB_DEVICE_NAME_MAX);
> +
> +	ret = xa_alloc_cyclic(&devices, &device->index, device, xa_limit_31b,
> +			      &last_id, GFP_KERNEL);
> +	if (ret > 0)
> +		ret = 0;
> +
> +out:
> +	up_write(&devices_rwsem);
> +	return ret;
> +}
> +
>  /**
>   * _ib_alloc_device - allocate an IB device struct
>   * @size:size of structure to allocate
> + * @name: unique string device name. This may include a '%' which will

It looks like all drivers are setting "%" in their name and "name" can
be changed to be "prefix".

Thanks

^ permalink raw reply	[flat|nested] 24+ messages in thread

* Re: [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device
  2020-04-27 11:47 ` Leon Romanovsky
@ 2020-04-27 11:52   ` Jason Gunthorpe
  2020-04-27 12:03     ` Leon Romanovsky
  2020-04-28  1:29   ` liweihang
  1 sibling, 1 reply; 24+ messages in thread
From: Jason Gunthorpe @ 2020-04-27 11:52 UTC (permalink / raw)
  To: Leon Romanovsky
  Cc: Weihang Li, dledford, linux-rdma, linuxarm, selvin.xavier,
	devesh.sharma, somnath.kotur, sriharsha.basavapatna, bharat,
	galpress, sleybo, faisal.latif, shiraz.saleem, yishaih,
	mkalderon, aelior, benve, neescoba, pkaustub, aditr, pv-drivers,
	monis, kamalheib1, parav, markz, rd.dunlab, dennis.dalessandro

On Mon, Apr 27, 2020 at 02:47:34PM +0300, Leon Romanovsky wrote:
> On Sun, Apr 26, 2020 at 05:31:57PM +0800, Weihang Li wrote:
> > If the name of a device is assigned during ib_register_device(), some
> > drivers have to use dev_*() for printing before register device. Bring
> > assign_name() into ib_alloc_device(), so that drivers can use ibdev_*()
> > anywhere.
> >
> > Signed-off-by: Weihang Li <liweihang@huawei.com>
> >  drivers/infiniband/core/device.c               | 85 +++++++++++++-------------
> >  drivers/infiniband/hw/bnxt_re/main.c           |  4 +-
> >  drivers/infiniband/hw/cxgb4/device.c           |  2 +-
> >  drivers/infiniband/hw/cxgb4/provider.c         |  2 +-
> >  drivers/infiniband/hw/efa/efa_main.c           |  4 +-
> >  drivers/infiniband/hw/hns/hns_roce_hw_v1.c     |  2 +-
> >  drivers/infiniband/hw/hns/hns_roce_hw_v2.c     |  2 +-
> >  drivers/infiniband/hw/hns/hns_roce_main.c      |  2 +-
> >  drivers/infiniband/hw/i40iw/i40iw_verbs.c      |  4 +-
> >  drivers/infiniband/hw/mlx4/main.c              |  4 +-
> >  drivers/infiniband/hw/mlx5/ib_rep.c            |  8 ++-
> >  drivers/infiniband/hw/mlx5/main.c              | 18 +++---
> >  drivers/infiniband/hw/mthca/mthca_main.c       |  2 +-
> >  drivers/infiniband/hw/mthca/mthca_provider.c   |  2 +-
> >  drivers/infiniband/hw/ocrdma/ocrdma_main.c     |  4 +-
> >  drivers/infiniband/hw/qedr/main.c              |  4 +-
> >  drivers/infiniband/hw/usnic/usnic_ib_main.c    |  4 +-
> >  drivers/infiniband/hw/vmw_pvrdma/pvrdma_main.c |  4 +-
> >  drivers/infiniband/sw/rxe/rxe.c                |  4 +-
> >  drivers/infiniband/sw/rxe/rxe.h                |  2 +-
> >  drivers/infiniband/sw/rxe/rxe_net.c            |  4 +-
> >  drivers/infiniband/sw/rxe/rxe_verbs.c          |  4 +-
> >  drivers/infiniband/sw/rxe/rxe_verbs.h          |  2 +-
> >  include/rdma/ib_verbs.h                        |  8 +--
> >  24 files changed, 95 insertions(+), 86 deletions(-)
> >
> > diff --git a/drivers/infiniband/core/device.c b/drivers/infiniband/core/device.c
> > index d0b3d35..30d28da 100644
> > +++ b/drivers/infiniband/core/device.c
> > @@ -557,9 +557,45 @@ static void rdma_init_coredev(struct ib_core_device *coredev,
> >  	write_pnet(&coredev->rdma_net, net);
> >  }
> >
> > +/*
> > + * Assign the unique string device name and the unique device index. This is
> > + * undone by ib_dealloc_device.
> > + */
> > +static int assign_name(struct ib_device *device, const char *name)
> > +{
> > +	static u32 last_id;
> > +	int ret;
> > +
> > +	down_write(&devices_rwsem);
> > +	/* Assign a unique name to the device */
> > +	if (strchr(name, '%'))
> > +		ret = alloc_name(device, name);
> > +	else
> > +		ret = dev_set_name(&device->dev, name);
> > +	if (ret)
> > +		goto out;
> > +
> > +	if (__ib_device_get_by_name(dev_name(&device->dev))) {
> > +		ret = -ENFILE;
> > +		goto out;
> > +	}
> > +	strlcpy(device->name, dev_name(&device->dev), IB_DEVICE_NAME_MAX);
> > +
> > +	ret = xa_alloc_cyclic(&devices, &device->index, device, xa_limit_31b,
> > +			      &last_id, GFP_KERNEL);
> > +	if (ret > 0)
> > +		ret = 0;
> > +
> > +out:
> > +	up_write(&devices_rwsem);
> > +	return ret;
> > +}
> > +
> >  /**
> >   * _ib_alloc_device - allocate an IB device struct
> >   * @size:size of structure to allocate
> > + * @name: unique string device name. This may include a '%' which will
> 
> It looks like all drivers are setting "%" in their name and "name" can
> be changed to be "prefix".

Does hfi? I thought the name was forced there for some port swapped
reason?

Jason

^ permalink raw reply	[flat|nested] 24+ messages in thread

* Re: [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device
  2020-04-27 11:52   ` Jason Gunthorpe
@ 2020-04-27 12:03     ` Leon Romanovsky
  2020-04-28  8:00       ` liweihang
  0 siblings, 1 reply; 24+ messages in thread
From: Leon Romanovsky @ 2020-04-27 12:03 UTC (permalink / raw)
  To: Jason Gunthorpe
  Cc: Weihang Li, dledford, linux-rdma, linuxarm, selvin.xavier,
	devesh.sharma, somnath.kotur, sriharsha.basavapatna, bharat,
	galpress, sleybo, faisal.latif, shiraz.saleem, yishaih,
	mkalderon, aelior, benve, neescoba, pkaustub, aditr, pv-drivers,
	monis, kamalheib1, parav, markz, rd.dunlab, dennis.dalessandro

On Mon, Apr 27, 2020 at 08:52:01AM -0300, Jason Gunthorpe wrote:
> On Mon, Apr 27, 2020 at 02:47:34PM +0300, Leon Romanovsky wrote:
> > On Sun, Apr 26, 2020 at 05:31:57PM +0800, Weihang Li wrote:
> > > If the name of a device is assigned during ib_register_device(), some
> > > drivers have to use dev_*() for printing before register device. Bring
> > > assign_name() into ib_alloc_device(), so that drivers can use ibdev_*()
> > > anywhere.
> > >
> > > Signed-off-by: Weihang Li <liweihang@huawei.com>
> > >  drivers/infiniband/core/device.c               | 85 +++++++++++++-------------
> > >  drivers/infiniband/hw/bnxt_re/main.c           |  4 +-
> > >  drivers/infiniband/hw/cxgb4/device.c           |  2 +-
> > >  drivers/infiniband/hw/cxgb4/provider.c         |  2 +-
> > >  drivers/infiniband/hw/efa/efa_main.c           |  4 +-
> > >  drivers/infiniband/hw/hns/hns_roce_hw_v1.c     |  2 +-
> > >  drivers/infiniband/hw/hns/hns_roce_hw_v2.c     |  2 +-
> > >  drivers/infiniband/hw/hns/hns_roce_main.c      |  2 +-
> > >  drivers/infiniband/hw/i40iw/i40iw_verbs.c      |  4 +-
> > >  drivers/infiniband/hw/mlx4/main.c              |  4 +-
> > >  drivers/infiniband/hw/mlx5/ib_rep.c            |  8 ++-
> > >  drivers/infiniband/hw/mlx5/main.c              | 18 +++---
> > >  drivers/infiniband/hw/mthca/mthca_main.c       |  2 +-
> > >  drivers/infiniband/hw/mthca/mthca_provider.c   |  2 +-
> > >  drivers/infiniband/hw/ocrdma/ocrdma_main.c     |  4 +-
> > >  drivers/infiniband/hw/qedr/main.c              |  4 +-
> > >  drivers/infiniband/hw/usnic/usnic_ib_main.c    |  4 +-
> > >  drivers/infiniband/hw/vmw_pvrdma/pvrdma_main.c |  4 +-
> > >  drivers/infiniband/sw/rxe/rxe.c                |  4 +-
> > >  drivers/infiniband/sw/rxe/rxe.h                |  2 +-
> > >  drivers/infiniband/sw/rxe/rxe_net.c            |  4 +-
> > >  drivers/infiniband/sw/rxe/rxe_verbs.c          |  4 +-
> > >  drivers/infiniband/sw/rxe/rxe_verbs.h          |  2 +-
> > >  include/rdma/ib_verbs.h                        |  8 +--
> > >  24 files changed, 95 insertions(+), 86 deletions(-)
> > >
> > > diff --git a/drivers/infiniband/core/device.c b/drivers/infiniband/core/device.c
> > > index d0b3d35..30d28da 100644
> > > +++ b/drivers/infiniband/core/device.c
> > > @@ -557,9 +557,45 @@ static void rdma_init_coredev(struct ib_core_device *coredev,
> > >  	write_pnet(&coredev->rdma_net, net);
> > >  }
> > >
> > > +/*
> > > + * Assign the unique string device name and the unique device index. This is
> > > + * undone by ib_dealloc_device.
> > > + */
> > > +static int assign_name(struct ib_device *device, const char *name)
> > > +{
> > > +	static u32 last_id;
> > > +	int ret;
> > > +
> > > +	down_write(&devices_rwsem);
> > > +	/* Assign a unique name to the device */
> > > +	if (strchr(name, '%'))
> > > +		ret = alloc_name(device, name);
> > > +	else
> > > +		ret = dev_set_name(&device->dev, name);
> > > +	if (ret)
> > > +		goto out;
> > > +
> > > +	if (__ib_device_get_by_name(dev_name(&device->dev))) {
> > > +		ret = -ENFILE;
> > > +		goto out;
> > > +	}
> > > +	strlcpy(device->name, dev_name(&device->dev), IB_DEVICE_NAME_MAX);
> > > +
> > > +	ret = xa_alloc_cyclic(&devices, &device->index, device, xa_limit_31b,
> > > +			      &last_id, GFP_KERNEL);
> > > +	if (ret > 0)
> > > +		ret = 0;
> > > +
> > > +out:
> > > +	up_write(&devices_rwsem);
> > > +	return ret;
> > > +}
> > > +
> > >  /**
> > >   * _ib_alloc_device - allocate an IB device struct
> > >   * @size:size of structure to allocate
> > > + * @name: unique string device name. This may include a '%' which will
> >
> > It looks like all drivers are setting "%" in their name and "name" can
> > be changed to be "prefix".
>
> Does hfi? I thought the name was forced there for some port swapped
> reason?

This patch doesn't touch HFI, nothing prohibits from us to make this
conversion work for all drivers except HFI and for the HFI add some
different callback. There is no need to make API harder just because
one driver needs it.

Thanks

>
> Jason

^ permalink raw reply	[flat|nested] 24+ messages in thread

* RE: [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device
  2020-04-26  9:31 [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device Weihang Li
  2020-04-27  8:45 ` Gal Pressman
  2020-04-27 11:47 ` Leon Romanovsky
@ 2020-04-27 17:55 ` Saleem, Shiraz
  2020-04-28  0:04   ` Jason Gunthorpe
  2020-04-28  6:17   ` liweihang
  2020-04-27 20:26   ` kbuild test robot
  2020-04-28  6:29   ` kbuild test robot
  4 siblings, 2 replies; 24+ messages in thread
From: Saleem, Shiraz @ 2020-04-27 17:55 UTC (permalink / raw)
  To: Weihang Li, dledford, jgg
  Cc: leon, linux-rdma, linuxarm, selvin.xavier, devesh.sharma,
	somnath.kotur, sriharsha.basavapatna, bharat, galpress, sleybo,
	Latif, Faisal, yishaih, mkalderon, aelior, benve, neescoba,
	pkaustub, aditr, pv-drivers, monis, kamalheib1, parav, markz,
	rd.dunlab, Dalessandro, Dennis

> Subject: [PATCH for-next] RDMA/core: Assign the name of device when allocating
> ib_device
> 
> If the name of a device is assigned during ib_register_device(), some drivers have
> to use dev_*() for printing before register device. Bring
> assign_name() into ib_alloc_device(), so that drivers can use ibdev_*() anywhere.
> 
> Signed-off-by: Weihang Li <liweihang@huawei.com>
> ---
>  drivers/infiniband/core/device.c               | 85 +++++++++++++-------------
>  drivers/infiniband/hw/bnxt_re/main.c           |  4 +-
>  drivers/infiniband/hw/cxgb4/device.c           |  2 +-
>  drivers/infiniband/hw/cxgb4/provider.c         |  2 +-
>  drivers/infiniband/hw/efa/efa_main.c           |  4 +-
>  drivers/infiniband/hw/hns/hns_roce_hw_v1.c     |  2 +-
>  drivers/infiniband/hw/hns/hns_roce_hw_v2.c     |  2 +-
>  drivers/infiniband/hw/hns/hns_roce_main.c      |  2 +-
>  drivers/infiniband/hw/i40iw/i40iw_verbs.c      |  4 +-
>  drivers/infiniband/hw/mlx4/main.c              |  4 +-
>  drivers/infiniband/hw/mlx5/ib_rep.c            |  8 ++-
>  drivers/infiniband/hw/mlx5/main.c              | 18 +++---
>  drivers/infiniband/hw/mthca/mthca_main.c       |  2 +-
>  drivers/infiniband/hw/mthca/mthca_provider.c   |  2 +-
>  drivers/infiniband/hw/ocrdma/ocrdma_main.c     |  4 +-
>  drivers/infiniband/hw/qedr/main.c              |  4 +-
>  drivers/infiniband/hw/usnic/usnic_ib_main.c    |  4 +-
>  drivers/infiniband/hw/vmw_pvrdma/pvrdma_main.c |  4 +-
>  drivers/infiniband/sw/rxe/rxe.c                |  4 +-
>  drivers/infiniband/sw/rxe/rxe.h                |  2 +-
>  drivers/infiniband/sw/rxe/rxe_net.c            |  4 +-
>  drivers/infiniband/sw/rxe/rxe_verbs.c          |  4 +-
>  drivers/infiniband/sw/rxe/rxe_verbs.h          |  2 +-
>  include/rdma/ib_verbs.h                        |  8 +--
>  24 files changed, 95 insertions(+), 86 deletions(-)

I think you ll need to update siw driver similarly.

rvt_register_device should be adapted to use the revised device registration API.
hfi1/qib also need some rework.
rvt_alloc_device needs to be adapted for the new one-shot 
name + device allocation scheme.
Hoping we can just use move the name setting from rvt_set_ibdev_name

A few more comments below.

[...]

>  /**
>   * _ib_alloc_device - allocate an IB device struct
>   * @size:size of structure to allocate
> + * @name: unique string device name. This may include a '%' which will
> + * cause a unique index to be added to the passed device name.
>   *
>   * Low-level drivers should use ib_alloc_device() to allocate &struct
>   * ib_device.  @size is the size of the structure to be allocated, @@ -567,7 +603,7
> @@ static void rdma_init_coredev(struct ib_core_device *coredev,
>   * ib_dealloc_device() must be used to free structures allocated with
>   * ib_alloc_device().
>   */
> -struct ib_device *_ib_alloc_device(size_t size)
> +struct ib_device *_ib_alloc_device(size_t size, const char *name)
>  {
>  	struct ib_device *device;
> 
> @@ -586,6 +622,11 @@ struct ib_device *_ib_alloc_device(size_t size)
>  	device->groups[0] = &ib_dev_attr_group;
>  	rdma_init_coredev(&device->coredev, device, &init_net);
> 
> +	if (assign_name(device, name)) {
> +		kfree(device);
Don't you need to do a rdma_restrack_clean here?


> +		return NULL;
> +	}
> +
>  	INIT_LIST_HEAD(&device->event_handler_list);
>  	spin_lock_init(&device->qp_open_list_lock);
>  	init_rwsem(&device->event_handler_rwsem);
> @@ -1132,40 +1173,6 @@ static __net_init int rdma_dev_init_net(struct net *net)
>  	return ret;
>  }
> 

[...]

> diff --git a/drivers/infiniband/hw/i40iw/i40iw_verbs.c
> b/drivers/infiniband/hw/i40iw/i40iw_verbs.c
> index 1b6fb13..ccb0d70 100644
> --- a/drivers/infiniband/hw/i40iw/i40iw_verbs.c
> +++ b/drivers/infiniband/hw/i40iw/i40iw_verbs.c
> @@ -2692,7 +2692,7 @@ static struct i40iw_ib_device
> *i40iw_init_rdma_device(struct i40iw_device *iwdev
>  	struct net_device *netdev = iwdev->netdev;
>  	struct pci_dev *pcidev = (struct pci_dev *)iwdev->hw.dev_context;
> 
> -	iwibdev = ib_alloc_device(i40iw_ib_device, ibdev);
> +	iwibdev = ib_alloc_device(i40iw_ib_device, ibdev, "i40iw%d");
>  	if (!iwibdev) {
>  		i40iw_pr_err("iwdev == NULL\n");
>  		return NULL;
> @@ -2780,7 +2780,7 @@ int i40iw_register_rdma_device(struct i40iw_device
> *iwdev)
>  	if (ret)
>  		goto error;
> 
> -	ret = ib_register_device(&iwibdev->ibdev, "i40iw%d");
> +	ret = ib_register_device(&iwibdev->ibdev);
>  	if (ret)
>  		goto error;
> 

i40iw looks ok except for the missing underscore which I think was brought up already in another provider.

Thanks for this work!

Shiraz


^ permalink raw reply	[flat|nested] 24+ messages in thread

* Re: [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device
  2020-04-26  9:31 [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device Weihang Li
@ 2020-04-27 20:26   ` kbuild test robot
  2020-04-27 11:47 ` Leon Romanovsky
                     ` (3 subsequent siblings)
  4 siblings, 0 replies; 24+ messages in thread
From: kbuild test robot @ 2020-04-27 20:26 UTC (permalink / raw)
  To: Weihang Li, dledford, jgg, leon, linux-rdma, linuxarm,
	selvin.xavier, devesh.sharma, somnath.kotur,
	sriharsha.basavapatna, bharat, galpress, sleybo, faisal.latif,
	shiraz.saleem, yishaih, mkalderon, aelior, benve, neescoba,
	pkaustub, aditr, pv-drivers, monis, kamalheib1, parav, markz,
	rd.dunlab, dennis.dalessandro
  Cc: kbuild-all, leon, linux-rdma, linuxarm, selvin.xavier,
	devesh.sharma, somnath.kotur, sriharsha.basavapatna, bharat,
	galpress

[-- Attachment #1: Type: text/plain, Size: 4295 bytes --]

Hi Weihang,

I love your patch! Yet something to improve:

[auto build test ERROR on rdma/for-next]
[also build test ERROR on linus/master v5.7-rc3 next-20200424]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Weihang-Li/RDMA-core-Assign-the-name-of-device-when-allocating-ib_device/20200428-022647
base:   https://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git for-next
config: sh-allmodconfig (attached as .config)
compiler: sh4-linux-gcc (GCC) 9.3.0
reproduce:
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day GCC_VERSION=9.3.0 make.cross ARCH=sh 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   drivers/infiniband/sw/siw/siw_main.c: In function 'siw_device_register':
>> drivers/infiniband/sw/siw/siw_main.c:70:7: error: too many arguments to function 'ib_register_device'
      70 |  rv = ib_register_device(base_dev, name);
         |       ^~~~~~~~~~~~~~~~~~
   In file included from drivers/infiniband/sw/siw/siw_main.c:20:
   include/rdma/ib_verbs.h:2781:5: note: declared here
    2781 | int ib_register_device(struct ib_device *device);
         |     ^~~~~~~~~~~~~~~~~~
   drivers/infiniband/sw/siw/siw_main.c: In function 'siw_device_create':
>> drivers/infiniband/sw/siw/siw_main.c:326:45: error: macro "ib_alloc_device" requires 3 arguments, but only 2 given
     326 |  sdev = ib_alloc_device(siw_device, base_dev);
         |                                             ^
   In file included from drivers/infiniband/sw/siw/siw_main.c:20:
   include/rdma/ib_verbs.h:2771: note: macro "ib_alloc_device" defined here
    2771 | #define ib_alloc_device(drv_struct, member, name)                              \
         | 
>> drivers/infiniband/sw/siw/siw_main.c:326:9: error: 'ib_alloc_device' undeclared (first use in this function); did you mean '_ib_alloc_device'?
     326 |  sdev = ib_alloc_device(siw_device, base_dev);
         |         ^~~~~~~~~~~~~~~
         |         _ib_alloc_device
   drivers/infiniband/sw/siw/siw_main.c:326:9: note: each undeclared identifier is reported only once for each function it appears in

vim +/ib_register_device +70 drivers/infiniband/sw/siw/siw_main.c

bdcf26bf9b3acb Bernard Metzler 2019-06-20  63  
bdcf26bf9b3acb Bernard Metzler 2019-06-20  64  static int siw_device_register(struct siw_device *sdev, const char *name)
bdcf26bf9b3acb Bernard Metzler 2019-06-20  65  {
bdcf26bf9b3acb Bernard Metzler 2019-06-20  66  	struct ib_device *base_dev = &sdev->base_dev;
bdcf26bf9b3acb Bernard Metzler 2019-06-20  67  	static int dev_id = 1;
bdcf26bf9b3acb Bernard Metzler 2019-06-20  68  	int rv;
bdcf26bf9b3acb Bernard Metzler 2019-06-20  69  
bdcf26bf9b3acb Bernard Metzler 2019-06-20 @70  	rv = ib_register_device(base_dev, name);
bdcf26bf9b3acb Bernard Metzler 2019-06-20  71  	if (rv) {
bdcf26bf9b3acb Bernard Metzler 2019-06-20  72  		pr_warn("siw: device registration error %d\n", rv);
bdcf26bf9b3acb Bernard Metzler 2019-06-20  73  		return rv;
bdcf26bf9b3acb Bernard Metzler 2019-06-20  74  	}
bdcf26bf9b3acb Bernard Metzler 2019-06-20  75  	sdev->vendor_part_id = dev_id++;
bdcf26bf9b3acb Bernard Metzler 2019-06-20  76  
bdcf26bf9b3acb Bernard Metzler 2019-06-20  77  	siw_dbg(base_dev, "HWaddr=%pM\n", sdev->netdev->dev_addr);
bdcf26bf9b3acb Bernard Metzler 2019-06-20  78  
bdcf26bf9b3acb Bernard Metzler 2019-06-20  79  	return 0;
bdcf26bf9b3acb Bernard Metzler 2019-06-20  80  }
bdcf26bf9b3acb Bernard Metzler 2019-06-20  81  

:::::: The code at line 70 was first introduced by commit
:::::: bdcf26bf9b3acb03c8f90387cfc6474fc8ac5521 rdma/siw: network and RDMA core interface

:::::: TO: Bernard Metzler <bmt@zurich.ibm.com>
:::::: CC: Jason Gunthorpe <jgg@mellanox.com>

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 54646 bytes --]

^ permalink raw reply	[flat|nested] 24+ messages in thread

* Re: [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device
@ 2020-04-27 20:26   ` kbuild test robot
  0 siblings, 0 replies; 24+ messages in thread
From: kbuild test robot @ 2020-04-27 20:26 UTC (permalink / raw)
  To: kbuild-all

[-- Attachment #1: Type: text/plain, Size: 4375 bytes --]

Hi Weihang,

I love your patch! Yet something to improve:

[auto build test ERROR on rdma/for-next]
[also build test ERROR on linus/master v5.7-rc3 next-20200424]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Weihang-Li/RDMA-core-Assign-the-name-of-device-when-allocating-ib_device/20200428-022647
base:   https://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git for-next
config: sh-allmodconfig (attached as .config)
compiler: sh4-linux-gcc (GCC) 9.3.0
reproduce:
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day GCC_VERSION=9.3.0 make.cross ARCH=sh 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   drivers/infiniband/sw/siw/siw_main.c: In function 'siw_device_register':
>> drivers/infiniband/sw/siw/siw_main.c:70:7: error: too many arguments to function 'ib_register_device'
      70 |  rv = ib_register_device(base_dev, name);
         |       ^~~~~~~~~~~~~~~~~~
   In file included from drivers/infiniband/sw/siw/siw_main.c:20:
   include/rdma/ib_verbs.h:2781:5: note: declared here
    2781 | int ib_register_device(struct ib_device *device);
         |     ^~~~~~~~~~~~~~~~~~
   drivers/infiniband/sw/siw/siw_main.c: In function 'siw_device_create':
>> drivers/infiniband/sw/siw/siw_main.c:326:45: error: macro "ib_alloc_device" requires 3 arguments, but only 2 given
     326 |  sdev = ib_alloc_device(siw_device, base_dev);
         |                                             ^
   In file included from drivers/infiniband/sw/siw/siw_main.c:20:
   include/rdma/ib_verbs.h:2771: note: macro "ib_alloc_device" defined here
    2771 | #define ib_alloc_device(drv_struct, member, name)                              \
         | 
>> drivers/infiniband/sw/siw/siw_main.c:326:9: error: 'ib_alloc_device' undeclared (first use in this function); did you mean '_ib_alloc_device'?
     326 |  sdev = ib_alloc_device(siw_device, base_dev);
         |         ^~~~~~~~~~~~~~~
         |         _ib_alloc_device
   drivers/infiniband/sw/siw/siw_main.c:326:9: note: each undeclared identifier is reported only once for each function it appears in

vim +/ib_register_device +70 drivers/infiniband/sw/siw/siw_main.c

bdcf26bf9b3acb Bernard Metzler 2019-06-20  63  
bdcf26bf9b3acb Bernard Metzler 2019-06-20  64  static int siw_device_register(struct siw_device *sdev, const char *name)
bdcf26bf9b3acb Bernard Metzler 2019-06-20  65  {
bdcf26bf9b3acb Bernard Metzler 2019-06-20  66  	struct ib_device *base_dev = &sdev->base_dev;
bdcf26bf9b3acb Bernard Metzler 2019-06-20  67  	static int dev_id = 1;
bdcf26bf9b3acb Bernard Metzler 2019-06-20  68  	int rv;
bdcf26bf9b3acb Bernard Metzler 2019-06-20  69  
bdcf26bf9b3acb Bernard Metzler 2019-06-20 @70  	rv = ib_register_device(base_dev, name);
bdcf26bf9b3acb Bernard Metzler 2019-06-20  71  	if (rv) {
bdcf26bf9b3acb Bernard Metzler 2019-06-20  72  		pr_warn("siw: device registration error %d\n", rv);
bdcf26bf9b3acb Bernard Metzler 2019-06-20  73  		return rv;
bdcf26bf9b3acb Bernard Metzler 2019-06-20  74  	}
bdcf26bf9b3acb Bernard Metzler 2019-06-20  75  	sdev->vendor_part_id = dev_id++;
bdcf26bf9b3acb Bernard Metzler 2019-06-20  76  
bdcf26bf9b3acb Bernard Metzler 2019-06-20  77  	siw_dbg(base_dev, "HWaddr=%pM\n", sdev->netdev->dev_addr);
bdcf26bf9b3acb Bernard Metzler 2019-06-20  78  
bdcf26bf9b3acb Bernard Metzler 2019-06-20  79  	return 0;
bdcf26bf9b3acb Bernard Metzler 2019-06-20  80  }
bdcf26bf9b3acb Bernard Metzler 2019-06-20  81  

:::::: The code at line 70 was first introduced by commit
:::::: bdcf26bf9b3acb03c8f90387cfc6474fc8ac5521 rdma/siw: network and RDMA core interface

:::::: TO: Bernard Metzler <bmt@zurich.ibm.com>
:::::: CC: Jason Gunthorpe <jgg@mellanox.com>

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 54646 bytes --]

^ permalink raw reply	[flat|nested] 24+ messages in thread

* Re: [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device
  2020-04-27 17:55 ` Saleem, Shiraz
@ 2020-04-28  0:04   ` Jason Gunthorpe
  2020-04-29 13:32     ` Dennis Dalessandro
  2020-04-28  6:17   ` liweihang
  1 sibling, 1 reply; 24+ messages in thread
From: Jason Gunthorpe @ 2020-04-28  0:04 UTC (permalink / raw)
  To: Saleem, Shiraz
  Cc: Weihang Li, dledford, leon, linux-rdma, linuxarm, selvin.xavier,
	devesh.sharma, somnath.kotur, sriharsha.basavapatna, bharat,
	galpress, sleybo, Latif, Faisal, yishaih, mkalderon, aelior,
	benve, neescoba, pkaustub, aditr, pv-drivers, monis, kamalheib1,
	parav, markz, rd.dunlab, Dalessandro, Dennis

On Mon, Apr 27, 2020 at 05:55:57PM +0000, Saleem, Shiraz wrote:
> > Subject: [PATCH for-next] RDMA/core: Assign the name of device when allocating
> > ib_device
> > 
> > If the name of a device is assigned during ib_register_device(), some drivers have
> > to use dev_*() for printing before register device. Bring
> > assign_name() into ib_alloc_device(), so that drivers can use ibdev_*() anywhere.
> > 
> > Signed-off-by: Weihang Li <liweihang@huawei.com>
> >  drivers/infiniband/core/device.c               | 85 +++++++++++++-------------
> >  drivers/infiniband/hw/bnxt_re/main.c           |  4 +-
> >  drivers/infiniband/hw/cxgb4/device.c           |  2 +-
> >  drivers/infiniband/hw/cxgb4/provider.c         |  2 +-
> >  drivers/infiniband/hw/efa/efa_main.c           |  4 +-
> >  drivers/infiniband/hw/hns/hns_roce_hw_v1.c     |  2 +-
> >  drivers/infiniband/hw/hns/hns_roce_hw_v2.c     |  2 +-
> >  drivers/infiniband/hw/hns/hns_roce_main.c      |  2 +-
> >  drivers/infiniband/hw/i40iw/i40iw_verbs.c      |  4 +-
> >  drivers/infiniband/hw/mlx4/main.c              |  4 +-
> >  drivers/infiniband/hw/mlx5/ib_rep.c            |  8 ++-
> >  drivers/infiniband/hw/mlx5/main.c              | 18 +++---
> >  drivers/infiniband/hw/mthca/mthca_main.c       |  2 +-
> >  drivers/infiniband/hw/mthca/mthca_provider.c   |  2 +-
> >  drivers/infiniband/hw/ocrdma/ocrdma_main.c     |  4 +-
> >  drivers/infiniband/hw/qedr/main.c              |  4 +-
> >  drivers/infiniband/hw/usnic/usnic_ib_main.c    |  4 +-
> >  drivers/infiniband/hw/vmw_pvrdma/pvrdma_main.c |  4 +-
> >  drivers/infiniband/sw/rxe/rxe.c                |  4 +-
> >  drivers/infiniband/sw/rxe/rxe.h                |  2 +-
> >  drivers/infiniband/sw/rxe/rxe_net.c            |  4 +-
> >  drivers/infiniband/sw/rxe/rxe_verbs.c          |  4 +-
> >  drivers/infiniband/sw/rxe/rxe_verbs.h          |  2 +-
> >  include/rdma/ib_verbs.h                        |  8 +--
> >  24 files changed, 95 insertions(+), 86 deletions(-)
> 
> I think you ll need to update siw driver similarly.
> 
> rvt_register_device should be adapted to use the revised device registration API.
> hfi1/qib also need some rework.

It is necessary to make such a big change? :(

> rvt_alloc_device needs to be adapted for the new one-shot 
> name + device allocation scheme.
> Hoping we can just use move the name setting from rvt_set_ibdev_name

I thought so..

Jason

^ permalink raw reply	[flat|nested] 24+ messages in thread

* Re: [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device
  2020-04-27 11:47 ` Leon Romanovsky
  2020-04-27 11:52   ` Jason Gunthorpe
@ 2020-04-28  1:29   ` liweihang
  1 sibling, 0 replies; 24+ messages in thread
From: liweihang @ 2020-04-28  1:29 UTC (permalink / raw)
  To: Leon Romanovsky
  Cc: dledford, jgg, linux-rdma, Linuxarm, selvin.xavier,
	devesh.sharma, somnath.kotur, sriharsha.basavapatna, bharat,
	galpress, sleybo, faisal.latif, shiraz.saleem, yishaih,
	mkalderon, aelior, benve, neescoba, pkaustub, aditr, pv-drivers,
	monis, kamalheib1, parav, markz, rd.dunlab, dennis.dalessandro

On 2020/4/27 19:47, Leon Romanovsky wrote:
> On Sun, Apr 26, 2020 at 05:31:57PM +0800, Weihang Li wrote:
>> If the name of a device is assigned during ib_register_device(), some
>> drivers have to use dev_*() for printing before register device. Bring
>> assign_name() into ib_alloc_device(), so that drivers can use ibdev_*()
>> anywhere.
>>
>> Signed-off-by: Weihang Li <liweihang@huawei.com>
>> ---
>>  drivers/infiniband/core/device.c               | 85 +++++++++++++-------------
>>  drivers/infiniband/hw/bnxt_re/main.c           |  4 +-
>>  drivers/infiniband/hw/cxgb4/device.c           |  2 +-
>>  drivers/infiniband/hw/cxgb4/provider.c         |  2 +-
>>  drivers/infiniband/hw/efa/efa_main.c           |  4 +-
>>  drivers/infiniband/hw/hns/hns_roce_hw_v1.c     |  2 +-
>>  drivers/infiniband/hw/hns/hns_roce_hw_v2.c     |  2 +-
>>  drivers/infiniband/hw/hns/hns_roce_main.c      |  2 +-
>>  drivers/infiniband/hw/i40iw/i40iw_verbs.c      |  4 +-
>>  drivers/infiniband/hw/mlx4/main.c              |  4 +-
>>  drivers/infiniband/hw/mlx5/ib_rep.c            |  8 ++-
>>  drivers/infiniband/hw/mlx5/main.c              | 18 +++---
>>  drivers/infiniband/hw/mthca/mthca_main.c       |  2 +-
>>  drivers/infiniband/hw/mthca/mthca_provider.c   |  2 +-
>>  drivers/infiniband/hw/ocrdma/ocrdma_main.c     |  4 +-
>>  drivers/infiniband/hw/qedr/main.c              |  4 +-
>>  drivers/infiniband/hw/usnic/usnic_ib_main.c    |  4 +-
>>  drivers/infiniband/hw/vmw_pvrdma/pvrdma_main.c |  4 +-
>>  drivers/infiniband/sw/rxe/rxe.c                |  4 +-
>>  drivers/infiniband/sw/rxe/rxe.h                |  2 +-
>>  drivers/infiniband/sw/rxe/rxe_net.c            |  4 +-
>>  drivers/infiniband/sw/rxe/rxe_verbs.c          |  4 +-
>>  drivers/infiniband/sw/rxe/rxe_verbs.h          |  2 +-
>>  include/rdma/ib_verbs.h                        |  8 +--
>>  24 files changed, 95 insertions(+), 86 deletions(-)
>>
>> diff --git a/drivers/infiniband/core/device.c b/drivers/infiniband/core/device.c
>> index d0b3d35..30d28da 100644
>> --- a/drivers/infiniband/core/device.c
>> +++ b/drivers/infiniband/core/device.c
>> @@ -557,9 +557,45 @@ static void rdma_init_coredev(struct ib_core_device *coredev,
>>  	write_pnet(&coredev->rdma_net, net);
>>  }
>>
>> +/*
>> + * Assign the unique string device name and the unique device index. This is
>> + * undone by ib_dealloc_device.
>> + */
>> +static int assign_name(struct ib_device *device, const char *name)
>> +{
>> +	static u32 last_id;
>> +	int ret;
>> +
>> +	down_write(&devices_rwsem);
>> +	/* Assign a unique name to the device */
>> +	if (strchr(name, '%'))
>> +		ret = alloc_name(device, name);
>> +	else
>> +		ret = dev_set_name(&device->dev, name);
>> +	if (ret)
>> +		goto out;
>> +
>> +	if (__ib_device_get_by_name(dev_name(&device->dev))) {
>> +		ret = -ENFILE;
>> +		goto out;
>> +	}
>> +	strlcpy(device->name, dev_name(&device->dev), IB_DEVICE_NAME_MAX);
>> +
>> +	ret = xa_alloc_cyclic(&devices, &device->index, device, xa_limit_31b,
>> +			      &last_id, GFP_KERNEL);
>> +	if (ret > 0)
>> +		ret = 0;
>> +
>> +out:
>> +	up_write(&devices_rwsem);
>> +	return ret;
>> +}
>> +
>>  /**
>>   * _ib_alloc_device - allocate an IB device struct
>>   * @size:size of structure to allocate
>> + * @name: unique string device name. This may include a '%' which will
> 
> It looks like all drivers are setting "%" in their name and "name" can
> be changed to be "prefix".
> 
> Thanks
> 

Thank you for the advice, I will try.

Weihang

^ permalink raw reply	[flat|nested] 24+ messages in thread

* Re: [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device
  2020-04-27 17:55 ` Saleem, Shiraz
  2020-04-28  0:04   ` Jason Gunthorpe
@ 2020-04-28  6:17   ` liweihang
  1 sibling, 0 replies; 24+ messages in thread
From: liweihang @ 2020-04-28  6:17 UTC (permalink / raw)
  To: Saleem, Shiraz, dledford, jgg
  Cc: leon, linux-rdma, Linuxarm, selvin.xavier, devesh.sharma,
	somnath.kotur, sriharsha.basavapatna, bharat, galpress, sleybo,
	Latif, Faisal, yishaih, mkalderon, aelior, benve, neescoba,
	pkaustub, aditr, pv-drivers, monis, kamalheib1, parav, markz,
	rd.dunlab, Dalessandro, Dennis

On 2020/4/28 1:56, Saleem, Shiraz wrote:
>> Subject: [PATCH for-next] RDMA/core: Assign the name of device when allocating
>> ib_device
>>
>> If the name of a device is assigned during ib_register_device(), some drivers have
>> to use dev_*() for printing before register device. Bring
>> assign_name() into ib_alloc_device(), so that drivers can use ibdev_*() anywhere.
>>
>> Signed-off-by: Weihang Li <liweihang@huawei.com>
>> ---
>>  drivers/infiniband/core/device.c               | 85 +++++++++++++-------------
>>  drivers/infiniband/hw/bnxt_re/main.c           |  4 +-
>>  drivers/infiniband/hw/cxgb4/device.c           |  2 +-
>>  drivers/infiniband/hw/cxgb4/provider.c         |  2 +-
>>  drivers/infiniband/hw/efa/efa_main.c           |  4 +-
>>  drivers/infiniband/hw/hns/hns_roce_hw_v1.c     |  2 +-
>>  drivers/infiniband/hw/hns/hns_roce_hw_v2.c     |  2 +-
>>  drivers/infiniband/hw/hns/hns_roce_main.c      |  2 +-
>>  drivers/infiniband/hw/i40iw/i40iw_verbs.c      |  4 +-
>>  drivers/infiniband/hw/mlx4/main.c              |  4 +-
>>  drivers/infiniband/hw/mlx5/ib_rep.c            |  8 ++-
>>  drivers/infiniband/hw/mlx5/main.c              | 18 +++---
>>  drivers/infiniband/hw/mthca/mthca_main.c       |  2 +-
>>  drivers/infiniband/hw/mthca/mthca_provider.c   |  2 +-
>>  drivers/infiniband/hw/ocrdma/ocrdma_main.c     |  4 +-
>>  drivers/infiniband/hw/qedr/main.c              |  4 +-
>>  drivers/infiniband/hw/usnic/usnic_ib_main.c    |  4 +-
>>  drivers/infiniband/hw/vmw_pvrdma/pvrdma_main.c |  4 +-
>>  drivers/infiniband/sw/rxe/rxe.c                |  4 +-
>>  drivers/infiniband/sw/rxe/rxe.h                |  2 +-
>>  drivers/infiniband/sw/rxe/rxe_net.c            |  4 +-
>>  drivers/infiniband/sw/rxe/rxe_verbs.c          |  4 +-
>>  drivers/infiniband/sw/rxe/rxe_verbs.h          |  2 +-
>>  include/rdma/ib_verbs.h                        |  8 +--
>>  24 files changed, 95 insertions(+), 86 deletions(-)
> 
> I think you ll need to update siw driver similarly.
> 
> rvt_register_device should be adapted to use the revised device registration API.
> hfi1/qib also need some rework.
> rvt_alloc_device needs to be adapted for the new one-shot 
> name + device allocation scheme.
> Hoping we can just use move the name setting from rvt_set_ibdev_name
> 

Hi Shiraz,

Sorry for missing hfi1/qib, I will try to modify as your comments.

> A few more comments below.
>> [...]
> 
>>  /**
>>   * _ib_alloc_device - allocate an IB device struct
>>   * @size:size of structure to allocate
>> + * @name: unique string device name. This may include a '%' which will
>> + * cause a unique index to be added to the passed device name.
>>   *
>>   * Low-level drivers should use ib_alloc_device() to allocate &struct
>>   * ib_device.  @size is the size of the structure to be allocated, @@ -567,7 +603,7
>> @@ static void rdma_init_coredev(struct ib_core_device *coredev,
>>   * ib_dealloc_device() must be used to free structures allocated with
>>   * ib_alloc_device().
>>   */
>> -struct ib_device *_ib_alloc_device(size_t size)
>> +struct ib_device *_ib_alloc_device(size_t size, const char *name)
>>  {
>>  	struct ib_device *device;
>>
>> @@ -586,6 +622,11 @@ struct ib_device *_ib_alloc_device(size_t size)
>>  	device->groups[0] = &ib_dev_attr_group;
>>  	rdma_init_coredev(&device->coredev, device, &init_net);
>>
>> +	if (assign_name(device, name)) {
>> +		kfree(device);
> Don't you need to do a rdma_restrack_clean here?
> 

Yes, I think so. Thanks for your reminder.

> 
>> +		return NULL;
>> +	}
>> +
>>  	INIT_LIST_HEAD(&device->event_handler_list);
>>  	spin_lock_init(&device->qp_open_list_lock);
>>  	init_rwsem(&device->event_handler_rwsem);
>> @@ -1132,40 +1173,6 @@ static __net_init int rdma_dev_init_net(struct net *net)
>>  	return ret;
>>  }
>>
> 
> [...]
> 
>> diff --git a/drivers/infiniband/hw/i40iw/i40iw_verbs.c
>> b/drivers/infiniband/hw/i40iw/i40iw_verbs.c
>> index 1b6fb13..ccb0d70 100644
>> --- a/drivers/infiniband/hw/i40iw/i40iw_verbs.c
>> +++ b/drivers/infiniband/hw/i40iw/i40iw_verbs.c
>> @@ -2692,7 +2692,7 @@ static struct i40iw_ib_device
>> *i40iw_init_rdma_device(struct i40iw_device *iwdev
>>  	struct net_device *netdev = iwdev->netdev;
>>  	struct pci_dev *pcidev = (struct pci_dev *)iwdev->hw.dev_context;
>>
>> -	iwibdev = ib_alloc_device(i40iw_ib_device, ibdev);
>> +	iwibdev = ib_alloc_device(i40iw_ib_device, ibdev, "i40iw%d");
>>  	if (!iwibdev) {
>>  		i40iw_pr_err("iwdev == NULL\n");
>>  		return NULL;
>> @@ -2780,7 +2780,7 @@ int i40iw_register_rdma_device(struct i40iw_device
>> *iwdev)
>>  	if (ret)
>>  		goto error;
>>
>> -	ret = ib_register_device(&iwibdev->ibdev, "i40iw%d");
>> +	ret = ib_register_device(&iwibdev->ibdev);
>>  	if (ret)
>>  		goto error;
>>
> 
> i40iw looks ok except for the missing underscore which I think was brought up already in another provider.
> 
> Thanks for this work!
> 
> Shiraz
> 

OK, will add it.

Thanks
Weihang

> 


^ permalink raw reply	[flat|nested] 24+ messages in thread

* Re: [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device
  2020-04-26  9:31 [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device Weihang Li
@ 2020-04-28  6:29   ` kbuild test robot
  2020-04-27 11:47 ` Leon Romanovsky
                     ` (3 subsequent siblings)
  4 siblings, 0 replies; 24+ messages in thread
From: kbuild test robot @ 2020-04-28  6:29 UTC (permalink / raw)
  To: Weihang Li, dledford, jgg, leon, linux-rdma, linuxarm,
	selvin.xavier, devesh.sharma, somnath.kotur,
	sriharsha.basavapatna, bharat, galpress, sleybo, faisal.latif,
	shiraz.saleem, yishaih, mkalderon, aelior, benve, neescoba,
	pkaustub, aditr, pv-drivers, monis, kamalheib1, parav, markz,
	rd.dunlab, dennis.dalessandro
  Cc: kbuild-all, leon, linux-rdma, linuxarm, selvin.xavier,
	devesh.sharma, somnath.kotur, sriharsha.basavapatna, bharat,
	galpress

Hi Weihang,

I love your patch! Perhaps something to improve:

[auto build test WARNING on rdma/for-next]
[also build test WARNING on linus/master v5.7-rc3 next-20200424]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Weihang-Li/RDMA-core-Assign-the-name-of-device-when-allocating-ib_device/20200428-022647
base:   https://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git for-next
reproduce:
        # apt-get install sparse
        # sparse version: v0.6.1-191-gc51a0382-dirty
        make ARCH=x86_64 allmodconfig
        make C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__'

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot <lkp@intel.com>


sparse warnings: (new ones prefixed by >>)

>> drivers/infiniband/sw/rdmavt/vt.c:94:15: sparse: sparse: not enough arguments for function _ib_alloc_device
>> drivers/infiniband/sw/rdmavt/vt.c:94:15: sparse: sparse: cast from unknown type
>> drivers/infiniband/sw/rdmavt/vt.c:94:15: sparse: sparse: not enough arguments for function _ib_alloc_device
>> drivers/infiniband/sw/rdmavt/vt.c:94:15: sparse: sparse: not enough arguments for function _ib_alloc_device
>> drivers/infiniband/sw/rdmavt/vt.c:636:33: sparse: sparse: too many arguments for function ib_register_device
--
>> drivers/infiniband/sw/siw/siw_main.c:326:16: sparse: sparse: macro "ib_alloc_device" requires 3 arguments, but only 2 given
   drivers/infiniband/sw/siw/iwarp.h:196:22: sparse: sparse: invalid bitfield specifier for type restricted __be32.
   drivers/infiniband/sw/siw/iwarp.h:197:22: sparse: sparse: invalid bitfield specifier for type restricted __be32.
   drivers/infiniband/sw/siw/iwarp.h:198:22: sparse: sparse: invalid bitfield specifier for type restricted __be32.
   drivers/infiniband/sw/siw/iwarp.h:199:23: sparse: sparse: invalid bitfield specifier for type restricted __be32.
   drivers/infiniband/sw/siw/iwarp.h:200:23: sparse: sparse: invalid bitfield specifier for type restricted __be32.
   drivers/infiniband/sw/siw/iwarp.h:201:23: sparse: sparse: invalid bitfield specifier for type restricted __be32.
   drivers/infiniband/sw/siw/iwarp.h:202:25: sparse: sparse: invalid bitfield specifier for type restricted __be32.
>> drivers/infiniband/sw/siw/siw_main.c:70:32: sparse: sparse: too many arguments for function ib_register_device
   drivers/infiniband/sw/siw/siw_main.c:326:16: sparse: sparse: undefined identifier 'ib_alloc_device'

vim +94 drivers/infiniband/sw/rdmavt/vt.c

0194621b225348 Dennis Dalessandro 2016-01-06   76  
90793f7179478d Dennis Dalessandro 2016-02-14   77  /**
90793f7179478d Dennis Dalessandro 2016-02-14   78   * rvt_alloc_device - allocate rdi
90793f7179478d Dennis Dalessandro 2016-02-14   79   * @size: how big of a structure to allocate
90793f7179478d Dennis Dalessandro 2016-02-14   80   * @nports: number of ports to allocate array slots for
90793f7179478d Dennis Dalessandro 2016-02-14   81   *
90793f7179478d Dennis Dalessandro 2016-02-14   82   * Use IB core device alloc to allocate space for the rdi which is assumed to be
90793f7179478d Dennis Dalessandro 2016-02-14   83   * inside of the ib_device. Any extra space that drivers require should be
90793f7179478d Dennis Dalessandro 2016-02-14   84   * included in size.
90793f7179478d Dennis Dalessandro 2016-02-14   85   *
90793f7179478d Dennis Dalessandro 2016-02-14   86   * We also allocate a port array based on the number of ports.
90793f7179478d Dennis Dalessandro 2016-02-14   87   *
90793f7179478d Dennis Dalessandro 2016-02-14   88   * Return: pointer to allocated rdi
90793f7179478d Dennis Dalessandro 2016-02-14   89   */
ff6acd69518e0a Dennis Dalessandro 2016-01-22   90  struct rvt_dev_info *rvt_alloc_device(size_t size, int nports)
ff6acd69518e0a Dennis Dalessandro 2016-01-22   91  {
042932f7a32741 Colin Ian King     2018-03-01   92  	struct rvt_dev_info *rdi;
ff6acd69518e0a Dennis Dalessandro 2016-01-22   93  
459cc69fa4c17c Leon Romanovsky    2019-01-30  @94  	rdi = container_of(_ib_alloc_device(size), struct rvt_dev_info, ibdev);
ff6acd69518e0a Dennis Dalessandro 2016-01-22   95  	if (!rdi)
ff6acd69518e0a Dennis Dalessandro 2016-01-22   96  		return rdi;
ff6acd69518e0a Dennis Dalessandro 2016-01-22   97  
ff6acd69518e0a Dennis Dalessandro 2016-01-22   98  	rdi->ports = kcalloc(nports,
ff6acd69518e0a Dennis Dalessandro 2016-01-22   99  			     sizeof(struct rvt_ibport **),
ff6acd69518e0a Dennis Dalessandro 2016-01-22  100  			     GFP_KERNEL);
ff6acd69518e0a Dennis Dalessandro 2016-01-22  101  	if (!rdi->ports)
ff6acd69518e0a Dennis Dalessandro 2016-01-22  102  		ib_dealloc_device(&rdi->ibdev);
ff6acd69518e0a Dennis Dalessandro 2016-01-22  103  
ff6acd69518e0a Dennis Dalessandro 2016-01-22  104  	return rdi;
ff6acd69518e0a Dennis Dalessandro 2016-01-22  105  }
ff6acd69518e0a Dennis Dalessandro 2016-01-22  106  EXPORT_SYMBOL(rvt_alloc_device);
ff6acd69518e0a Dennis Dalessandro 2016-01-22  107  

:::::: The code at line 94 was first introduced by commit
:::::: 459cc69fa4c17caf21de596693d8a07170820a58 RDMA: Provide safe ib_alloc_device() function

:::::: TO: Leon Romanovsky <leonro@mellanox.com>
:::::: CC: Jason Gunthorpe <jgg@mellanox.com>

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

^ permalink raw reply	[flat|nested] 24+ messages in thread

* Re: [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device
@ 2020-04-28  6:29   ` kbuild test robot
  0 siblings, 0 replies; 24+ messages in thread
From: kbuild test robot @ 2020-04-28  6:29 UTC (permalink / raw)
  To: kbuild-all

[-- Attachment #1: Type: text/plain, Size: 5603 bytes --]

Hi Weihang,

I love your patch! Perhaps something to improve:

[auto build test WARNING on rdma/for-next]
[also build test WARNING on linus/master v5.7-rc3 next-20200424]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Weihang-Li/RDMA-core-Assign-the-name-of-device-when-allocating-ib_device/20200428-022647
base:   https://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git for-next
reproduce:
        # apt-get install sparse
        # sparse version: v0.6.1-191-gc51a0382-dirty
        make ARCH=x86_64 allmodconfig
        make C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__'

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot <lkp@intel.com>


sparse warnings: (new ones prefixed by >>)

>> drivers/infiniband/sw/rdmavt/vt.c:94:15: sparse: sparse: not enough arguments for function _ib_alloc_device
>> drivers/infiniband/sw/rdmavt/vt.c:94:15: sparse: sparse: cast from unknown type
>> drivers/infiniband/sw/rdmavt/vt.c:94:15: sparse: sparse: not enough arguments for function _ib_alloc_device
>> drivers/infiniband/sw/rdmavt/vt.c:94:15: sparse: sparse: not enough arguments for function _ib_alloc_device
>> drivers/infiniband/sw/rdmavt/vt.c:636:33: sparse: sparse: too many arguments for function ib_register_device
--
>> drivers/infiniband/sw/siw/siw_main.c:326:16: sparse: sparse: macro "ib_alloc_device" requires 3 arguments, but only 2 given
   drivers/infiniband/sw/siw/iwarp.h:196:22: sparse: sparse: invalid bitfield specifier for type restricted __be32.
   drivers/infiniband/sw/siw/iwarp.h:197:22: sparse: sparse: invalid bitfield specifier for type restricted __be32.
   drivers/infiniband/sw/siw/iwarp.h:198:22: sparse: sparse: invalid bitfield specifier for type restricted __be32.
   drivers/infiniband/sw/siw/iwarp.h:199:23: sparse: sparse: invalid bitfield specifier for type restricted __be32.
   drivers/infiniband/sw/siw/iwarp.h:200:23: sparse: sparse: invalid bitfield specifier for type restricted __be32.
   drivers/infiniband/sw/siw/iwarp.h:201:23: sparse: sparse: invalid bitfield specifier for type restricted __be32.
   drivers/infiniband/sw/siw/iwarp.h:202:25: sparse: sparse: invalid bitfield specifier for type restricted __be32.
>> drivers/infiniband/sw/siw/siw_main.c:70:32: sparse: sparse: too many arguments for function ib_register_device
   drivers/infiniband/sw/siw/siw_main.c:326:16: sparse: sparse: undefined identifier 'ib_alloc_device'

vim +94 drivers/infiniband/sw/rdmavt/vt.c

0194621b225348 Dennis Dalessandro 2016-01-06   76  
90793f7179478d Dennis Dalessandro 2016-02-14   77  /**
90793f7179478d Dennis Dalessandro 2016-02-14   78   * rvt_alloc_device - allocate rdi
90793f7179478d Dennis Dalessandro 2016-02-14   79   * @size: how big of a structure to allocate
90793f7179478d Dennis Dalessandro 2016-02-14   80   * @nports: number of ports to allocate array slots for
90793f7179478d Dennis Dalessandro 2016-02-14   81   *
90793f7179478d Dennis Dalessandro 2016-02-14   82   * Use IB core device alloc to allocate space for the rdi which is assumed to be
90793f7179478d Dennis Dalessandro 2016-02-14   83   * inside of the ib_device. Any extra space that drivers require should be
90793f7179478d Dennis Dalessandro 2016-02-14   84   * included in size.
90793f7179478d Dennis Dalessandro 2016-02-14   85   *
90793f7179478d Dennis Dalessandro 2016-02-14   86   * We also allocate a port array based on the number of ports.
90793f7179478d Dennis Dalessandro 2016-02-14   87   *
90793f7179478d Dennis Dalessandro 2016-02-14   88   * Return: pointer to allocated rdi
90793f7179478d Dennis Dalessandro 2016-02-14   89   */
ff6acd69518e0a Dennis Dalessandro 2016-01-22   90  struct rvt_dev_info *rvt_alloc_device(size_t size, int nports)
ff6acd69518e0a Dennis Dalessandro 2016-01-22   91  {
042932f7a32741 Colin Ian King     2018-03-01   92  	struct rvt_dev_info *rdi;
ff6acd69518e0a Dennis Dalessandro 2016-01-22   93  
459cc69fa4c17c Leon Romanovsky    2019-01-30  @94  	rdi = container_of(_ib_alloc_device(size), struct rvt_dev_info, ibdev);
ff6acd69518e0a Dennis Dalessandro 2016-01-22   95  	if (!rdi)
ff6acd69518e0a Dennis Dalessandro 2016-01-22   96  		return rdi;
ff6acd69518e0a Dennis Dalessandro 2016-01-22   97  
ff6acd69518e0a Dennis Dalessandro 2016-01-22   98  	rdi->ports = kcalloc(nports,
ff6acd69518e0a Dennis Dalessandro 2016-01-22   99  			     sizeof(struct rvt_ibport **),
ff6acd69518e0a Dennis Dalessandro 2016-01-22  100  			     GFP_KERNEL);
ff6acd69518e0a Dennis Dalessandro 2016-01-22  101  	if (!rdi->ports)
ff6acd69518e0a Dennis Dalessandro 2016-01-22  102  		ib_dealloc_device(&rdi->ibdev);
ff6acd69518e0a Dennis Dalessandro 2016-01-22  103  
ff6acd69518e0a Dennis Dalessandro 2016-01-22  104  	return rdi;
ff6acd69518e0a Dennis Dalessandro 2016-01-22  105  }
ff6acd69518e0a Dennis Dalessandro 2016-01-22  106  EXPORT_SYMBOL(rvt_alloc_device);
ff6acd69518e0a Dennis Dalessandro 2016-01-22  107  

:::::: The code at line 94 was first introduced by commit
:::::: 459cc69fa4c17caf21de596693d8a07170820a58 RDMA: Provide safe ib_alloc_device() function

:::::: TO: Leon Romanovsky <leonro@mellanox.com>
:::::: CC: Jason Gunthorpe <jgg@mellanox.com>

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

^ permalink raw reply	[flat|nested] 24+ messages in thread

* Re: [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device
  2020-04-27 12:03     ` Leon Romanovsky
@ 2020-04-28  8:00       ` liweihang
  2020-04-28 11:19         ` Leon Romanovsky
  0 siblings, 1 reply; 24+ messages in thread
From: liweihang @ 2020-04-28  8:00 UTC (permalink / raw)
  To: Leon Romanovsky, Jason Gunthorpe
  Cc: dledford, linux-rdma, Linuxarm, selvin.xavier, devesh.sharma,
	somnath.kotur, sriharsha.basavapatna, bharat, galpress, sleybo,
	faisal.latif, shiraz.saleem, yishaih, mkalderon, aelior, benve,
	neescoba, pkaustub, aditr, pv-drivers, monis, kamalheib1, parav,
	markz, rd.dunlab, dennis.dalessandro

On 2020/4/27 20:03, Leon Romanovsky wrote:
>>>>  /**
>>>>   * _ib_alloc_device - allocate an IB device struct
>>>>   * @size:size of structure to allocate
>>>> + * @name: unique string device name. This may include a '%' which will
>>> It looks like all drivers are setting "%" in their name and "name" can
>>> be changed to be "prefix".
>> Does hfi? I thought the name was forced there for some port swapped
>> reason?
> This patch doesn't touch HFI, nothing prohibits from us to make this
> conversion work for all drivers except HFI and for the HFI add some
> different callback. There is no need to make API harder just because
> one driver needs it.
> 
> Thanks
> 
>> Jason

Hi Jason and Leon,

I missed some codes related to assign_name() in this series including
hfi/qib as Shiraz pointed. And I found a "name" without a "%" in following
funtions in core/nldev.c, and ibdev_name will be used for rxe/siw later.

	static int nldev_newlink(struct sk_buff *skb, struct nlmsghdr *nlh,
				  struct netlink_ext_ack *extack)
	{
		...
	
		nla_strlcpy(ibdev_name, tb[RDMA_NLDEV_ATTR_DEV_NAME],
			    sizeof(ibdev_name));
		if (strchr(ibdev_name, '%') || strlen(ibdev_name) == 0)
			return -EINVAL;
	
		...
	}

I'm not familiar with these codes, but I think the judgment in assign_name()
is for the situaion like above.

	if (strchr(name, '%'))
		ret = alloc_name(device, name);
	else
		ret = dev_set_name(&device->dev, name);

So is it a better idea to keep using "name" instead of "prefix"?

Thanks
Weihang

^ permalink raw reply	[flat|nested] 24+ messages in thread

* Re: [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device
  2020-04-28  8:00       ` liweihang
@ 2020-04-28 11:19         ` Leon Romanovsky
  2020-04-28 12:39           ` liweihang
  0 siblings, 1 reply; 24+ messages in thread
From: Leon Romanovsky @ 2020-04-28 11:19 UTC (permalink / raw)
  To: liweihang
  Cc: Jason Gunthorpe, dledford, linux-rdma, Linuxarm, selvin.xavier,
	devesh.sharma, somnath.kotur, sriharsha.basavapatna, bharat,
	galpress, sleybo, faisal.latif, shiraz.saleem, yishaih,
	mkalderon, aelior, benve, neescoba, pkaustub, aditr, pv-drivers,
	monis, kamalheib1, parav, markz, rd.dunlab, dennis.dalessandro

On Tue, Apr 28, 2020 at 08:00:29AM +0000, liweihang wrote:
> On 2020/4/27 20:03, Leon Romanovsky wrote:
> >>>>  /**
> >>>>   * _ib_alloc_device - allocate an IB device struct
> >>>>   * @size:size of structure to allocate
> >>>> + * @name: unique string device name. This may include a '%' which will
> >>> It looks like all drivers are setting "%" in their name and "name" can
> >>> be changed to be "prefix".
> >> Does hfi? I thought the name was forced there for some port swapped
> >> reason?
> > This patch doesn't touch HFI, nothing prohibits from us to make this
> > conversion work for all drivers except HFI and for the HFI add some
> > different callback. There is no need to make API harder just because
> > one driver needs it.
> >
> > Thanks
> >
> >> Jason
>
> Hi Jason and Leon,
>
> I missed some codes related to assign_name() in this series including
> hfi/qib as Shiraz pointed. And I found a "name" without a "%" in following
> funtions in core/nldev.c, and ibdev_name will be used for rxe/siw later.
>
> 	static int nldev_newlink(struct sk_buff *skb, struct nlmsghdr *nlh,
> 				  struct netlink_ext_ack *extack)
> 	{
> 		...
>
> 		nla_strlcpy(ibdev_name, tb[RDMA_NLDEV_ATTR_DEV_NAME],
> 			    sizeof(ibdev_name));
> 		if (strchr(ibdev_name, '%') || strlen(ibdev_name) == 0)
> 			return -EINVAL;
>
> 		...
> 	}
>
> I'm not familiar with these codes, but I think the judgment in assign_name()
> is for the situaion like above.
>
> 	if (strchr(name, '%'))
> 		ret = alloc_name(device, name);
> 	else
> 		ret = dev_set_name(&device->dev, name);
>
> So is it a better idea to keep using "name" instead of "prefix"?

nldev_newlink() doesn't call to ib_alloc_device() and alloc_name(). The
check pointed by you is for the user input.

>
> Thanks
> Weihang

^ permalink raw reply	[flat|nested] 24+ messages in thread

* Re: [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device
  2020-04-28 11:19         ` Leon Romanovsky
@ 2020-04-28 12:39           ` liweihang
  2020-04-29  8:37             ` Leon Romanovsky
  0 siblings, 1 reply; 24+ messages in thread
From: liweihang @ 2020-04-28 12:39 UTC (permalink / raw)
  To: Leon Romanovsky
  Cc: Jason Gunthorpe, dledford, linux-rdma, Linuxarm, selvin.xavier,
	devesh.sharma, somnath.kotur, sriharsha.basavapatna, bharat,
	galpress, sleybo, faisal.latif, shiraz.saleem, yishaih,
	mkalderon, aelior, benve, neescoba, pkaustub, aditr, pv-drivers,
	monis, kamalheib1, parav, markz, rd.dunlab, dennis.dalessandro

On 2020/4/28 19:19, Leon Romanovsky wrote:
> On Tue, Apr 28, 2020 at 08:00:29AM +0000, liweihang wrote:
>> On 2020/4/27 20:03, Leon Romanovsky wrote:
>>>>>>  /**
>>>>>>   * _ib_alloc_device - allocate an IB device struct
>>>>>>   * @size:size of structure to allocate
>>>>>> + * @name: unique string device name. This may include a '%' which will
>>>>> It looks like all drivers are setting "%" in their name and "name" can
>>>>> be changed to be "prefix".
>>>> Does hfi? I thought the name was forced there for some port swapped
>>>> reason?
>>> This patch doesn't touch HFI, nothing prohibits from us to make this
>>> conversion work for all drivers except HFI and for the HFI add some
>>> different callback. There is no need to make API harder just because
>>> one driver needs it.
>>>
>>> Thanks
>>>
>>>> Jason
>>
>> Hi Jason and Leon,
>>
>> I missed some codes related to assign_name() in this series including
>> hfi/qib as Shiraz pointed. And I found a "name" without a "%" in following
>> funtions in core/nldev.c, and ibdev_name will be used for rxe/siw later.
>>
>> 	static int nldev_newlink(struct sk_buff *skb, struct nlmsghdr *nlh,
>> 				  struct netlink_ext_ack *extack)
>> 	{
>> 		...
>>
>> 		nla_strlcpy(ibdev_name, tb[RDMA_NLDEV_ATTR_DEV_NAME],
>> 			    sizeof(ibdev_name));
>> 		if (strchr(ibdev_name, '%') || strlen(ibdev_name) == 0)
>> 			return -EINVAL;
>>
>> 		...
>> 	}
>>
>> I'm not familiar with these codes, but I think the judgment in assign_name()
>> is for the situaion like above.
>>
>> 	if (strchr(name, '%'))
>> 		ret = alloc_name(device, name);
>> 	else
>> 		ret = dev_set_name(&device->dev, name);
>>
>> So is it a better idea to keep using "name" instead of "prefix"?
> 
> nldev_newlink() doesn't call to ib_alloc_device() and alloc_name(). The
> check pointed by you is for the user input.
> 

Hi Leon,

nldev_newlink() will call "ops->newlink(ibdev_name, ndev)", and it point to
siw_newlink() in siw_main.c. And then it will call ib_alloc_device() and
ib_register_device().

According to the code I pointed before, it seems that nldev_newlink()
expects users to input a name without '%', and then passes this name
to assign_name(). I think siw/rxe have to call ib_alloc_device() with
a name without '%', so we can't treat it as a prefix and add "_%d" to
it like for other drivers.

>>
>> Thanks
>> Weihang
> 


^ permalink raw reply	[flat|nested] 24+ messages in thread

* Re: [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device
  2020-04-28 12:39           ` liweihang
@ 2020-04-29  8:37             ` Leon Romanovsky
  2020-04-30  7:55               ` liweihang
  0 siblings, 1 reply; 24+ messages in thread
From: Leon Romanovsky @ 2020-04-29  8:37 UTC (permalink / raw)
  To: liweihang
  Cc: Jason Gunthorpe, dledford, linux-rdma, Linuxarm, selvin.xavier,
	devesh.sharma, somnath.kotur, sriharsha.basavapatna, bharat,
	galpress, sleybo, faisal.latif, shiraz.saleem, yishaih,
	mkalderon, aelior, benve, neescoba, pkaustub, aditr, pv-drivers,
	monis, kamalheib1, parav, markz, rd.dunlab, dennis.dalessandro

On Tue, Apr 28, 2020 at 12:39:49PM +0000, liweihang wrote:
> On 2020/4/28 19:19, Leon Romanovsky wrote:
> > On Tue, Apr 28, 2020 at 08:00:29AM +0000, liweihang wrote:
> >> On 2020/4/27 20:03, Leon Romanovsky wrote:
> >>>>>>  /**
> >>>>>>   * _ib_alloc_device - allocate an IB device struct
> >>>>>>   * @size:size of structure to allocate
> >>>>>> + * @name: unique string device name. This may include a '%' which will
> >>>>> It looks like all drivers are setting "%" in their name and "name" can
> >>>>> be changed to be "prefix".
> >>>> Does hfi? I thought the name was forced there for some port swapped
> >>>> reason?
> >>> This patch doesn't touch HFI, nothing prohibits from us to make this
> >>> conversion work for all drivers except HFI and for the HFI add some
> >>> different callback. There is no need to make API harder just because
> >>> one driver needs it.
> >>>
> >>> Thanks
> >>>
> >>>> Jason
> >>
> >> Hi Jason and Leon,
> >>
> >> I missed some codes related to assign_name() in this series including
> >> hfi/qib as Shiraz pointed. And I found a "name" without a "%" in following
> >> funtions in core/nldev.c, and ibdev_name will be used for rxe/siw later.
> >>
> >> 	static int nldev_newlink(struct sk_buff *skb, struct nlmsghdr *nlh,
> >> 				  struct netlink_ext_ack *extack)
> >> 	{
> >> 		...
> >>
> >> 		nla_strlcpy(ibdev_name, tb[RDMA_NLDEV_ATTR_DEV_NAME],
> >> 			    sizeof(ibdev_name));
> >> 		if (strchr(ibdev_name, '%') || strlen(ibdev_name) == 0)
> >> 			return -EINVAL;
> >>
> >> 		...
> >> 	}
> >>
> >> I'm not familiar with these codes, but I think the judgment in assign_name()
> >> is for the situaion like above.
> >>
> >> 	if (strchr(name, '%'))
> >> 		ret = alloc_name(device, name);
> >> 	else
> >> 		ret = dev_set_name(&device->dev, name);
> >>
> >> So is it a better idea to keep using "name" instead of "prefix"?
> >
> > nldev_newlink() doesn't call to ib_alloc_device() and alloc_name(). The
> > check pointed by you is for the user input.
> >
>
> Hi Leon,
>
> nldev_newlink() will call "ops->newlink(ibdev_name, ndev)", and it point to
> siw_newlink() in siw_main.c. And then it will call ib_alloc_device() and
> ib_register_device().
>
> According to the code I pointed before, it seems that nldev_newlink()
> expects users to input a name without '%', and then passes this name
> to assign_name(). I think siw/rxe have to call ib_alloc_device() with
> a name without '%', so we can't treat it as a prefix and add "_%d" to
> it like for other drivers.

The opposite is actually true.

The reason why newlink checks for % is due to the expectation in
alloc_name() to have a name with % for numbered devices, which is
nice, but the better API will be to provide "prefix" and a flag
if to append an index or not.

Thanks

>
> >>
> >> Thanks
> >> Weihang
> >
>

^ permalink raw reply	[flat|nested] 24+ messages in thread

* Re: [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device
  2020-04-28  0:04   ` Jason Gunthorpe
@ 2020-04-29 13:32     ` Dennis Dalessandro
  2020-04-29 13:50       ` Jason Gunthorpe
  0 siblings, 1 reply; 24+ messages in thread
From: Dennis Dalessandro @ 2020-04-29 13:32 UTC (permalink / raw)
  To: Jason Gunthorpe, Saleem, Shiraz
  Cc: Weihang Li, dledford, leon, linux-rdma, linuxarm, selvin.xavier,
	devesh.sharma, somnath.kotur, sriharsha.basavapatna, bharat,
	galpress, sleybo, Latif, Faisal, yishaih, mkalderon, aelior,
	benve, neescoba, pkaustub, aditr, pv-drivers, monis, kamalheib1,
	parav, markz, rd.dunlab

On 4/27/2020 8:04 PM, Jason Gunthorpe wrote:
> On Mon, Apr 27, 2020 at 05:55:57PM +0000, Saleem, Shiraz wrote:
>>> Subject: [PATCH for-next] RDMA/core: Assign the name of device when allocating
>>> ib_device
>>>
>>> If the name of a device is assigned during ib_register_device(), some drivers have
>>> to use dev_*() for printing before register device. Bring
>>> assign_name() into ib_alloc_device(), so that drivers can use ibdev_*() anywhere.
>>>
>>> Signed-off-by: Weihang Li <liweihang@huawei.com>
>>>   drivers/infiniband/core/device.c               | 85 +++++++++++++-------------
>>>   drivers/infiniband/hw/bnxt_re/main.c           |  4 +-
>>>   drivers/infiniband/hw/cxgb4/device.c           |  2 +-
>>>   drivers/infiniband/hw/cxgb4/provider.c         |  2 +-
>>>   drivers/infiniband/hw/efa/efa_main.c           |  4 +-
>>>   drivers/infiniband/hw/hns/hns_roce_hw_v1.c     |  2 +-
>>>   drivers/infiniband/hw/hns/hns_roce_hw_v2.c     |  2 +-
>>>   drivers/infiniband/hw/hns/hns_roce_main.c      |  2 +-
>>>   drivers/infiniband/hw/i40iw/i40iw_verbs.c      |  4 +-
>>>   drivers/infiniband/hw/mlx4/main.c              |  4 +-
>>>   drivers/infiniband/hw/mlx5/ib_rep.c            |  8 ++-
>>>   drivers/infiniband/hw/mlx5/main.c              | 18 +++---
>>>   drivers/infiniband/hw/mthca/mthca_main.c       |  2 +-
>>>   drivers/infiniband/hw/mthca/mthca_provider.c   |  2 +-
>>>   drivers/infiniband/hw/ocrdma/ocrdma_main.c     |  4 +-
>>>   drivers/infiniband/hw/qedr/main.c              |  4 +-
>>>   drivers/infiniband/hw/usnic/usnic_ib_main.c    |  4 +-
>>>   drivers/infiniband/hw/vmw_pvrdma/pvrdma_main.c |  4 +-
>>>   drivers/infiniband/sw/rxe/rxe.c                |  4 +-
>>>   drivers/infiniband/sw/rxe/rxe.h                |  2 +-
>>>   drivers/infiniband/sw/rxe/rxe_net.c            |  4 +-
>>>   drivers/infiniband/sw/rxe/rxe_verbs.c          |  4 +-
>>>   drivers/infiniband/sw/rxe/rxe_verbs.h          |  2 +-
>>>   include/rdma/ib_verbs.h                        |  8 +--
>>>   24 files changed, 95 insertions(+), 86 deletions(-)
>>
>> I think you ll need to update siw driver similarly.
>>
>> rvt_register_device should be adapted to use the revised device registration API.
>> hfi1/qib also need some rework.
> 
> It is necessary to make such a big change? :(
> 
>> rvt_alloc_device needs to be adapted for the new one-shot
>> name + device allocation scheme.
>> Hoping we can just use move the name setting from rvt_set_ibdev_name
> 
> I thought so..
> 

The issue is hfi1 calls into rvt_alloc_device() which then calls 
_ib_alloc_device(). We don't have the name set at that point. So the 
obvious thing to do is move the rvt_set_ibdev_name(). However there is a 
catch.

The name gets set after allocating the device and the device table 
because we get the unit number as part of the 
xa_alloc_irq(hfi1_dev_table) call which needs the pointer to the devdata.

One solution would be to pass in the pointer for the driver's dev table 
and let rvt_alloc_device() do the xa_alloc_irq().

-Denny


^ permalink raw reply	[flat|nested] 24+ messages in thread

* Re: [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device
  2020-04-29 13:32     ` Dennis Dalessandro
@ 2020-04-29 13:50       ` Jason Gunthorpe
  2020-04-29 14:33         ` Dennis Dalessandro
  0 siblings, 1 reply; 24+ messages in thread
From: Jason Gunthorpe @ 2020-04-29 13:50 UTC (permalink / raw)
  To: Dennis Dalessandro
  Cc: Saleem, Shiraz, Weihang Li, dledford, leon, linux-rdma, linuxarm,
	selvin.xavier, devesh.sharma, somnath.kotur,
	sriharsha.basavapatna, bharat, galpress, sleybo, Latif, Faisal,
	yishaih, mkalderon, aelior, benve, neescoba, pkaustub, aditr,
	pv-drivers, monis, kamalheib1, parav, markz, rd.dunlab

On Wed, Apr 29, 2020 at 09:32:16AM -0400, Dennis Dalessandro wrote:
> On 4/27/2020 8:04 PM, Jason Gunthorpe wrote:
> > On Mon, Apr 27, 2020 at 05:55:57PM +0000, Saleem, Shiraz wrote:
> > > > Subject: [PATCH for-next] RDMA/core: Assign the name of device when allocating
> > > > ib_device
> > > > 
> > > > If the name of a device is assigned during ib_register_device(), some drivers have
> > > > to use dev_*() for printing before register device. Bring
> > > > assign_name() into ib_alloc_device(), so that drivers can use ibdev_*() anywhere.
> > > > 
> > > > Signed-off-by: Weihang Li <liweihang@huawei.com>
> > > >   drivers/infiniband/core/device.c               | 85 +++++++++++++-------------
> > > >   drivers/infiniband/hw/bnxt_re/main.c           |  4 +-
> > > >   drivers/infiniband/hw/cxgb4/device.c           |  2 +-
> > > >   drivers/infiniband/hw/cxgb4/provider.c         |  2 +-
> > > >   drivers/infiniband/hw/efa/efa_main.c           |  4 +-
> > > >   drivers/infiniband/hw/hns/hns_roce_hw_v1.c     |  2 +-
> > > >   drivers/infiniband/hw/hns/hns_roce_hw_v2.c     |  2 +-
> > > >   drivers/infiniband/hw/hns/hns_roce_main.c      |  2 +-
> > > >   drivers/infiniband/hw/i40iw/i40iw_verbs.c      |  4 +-
> > > >   drivers/infiniband/hw/mlx4/main.c              |  4 +-
> > > >   drivers/infiniband/hw/mlx5/ib_rep.c            |  8 ++-
> > > >   drivers/infiniband/hw/mlx5/main.c              | 18 +++---
> > > >   drivers/infiniband/hw/mthca/mthca_main.c       |  2 +-
> > > >   drivers/infiniband/hw/mthca/mthca_provider.c   |  2 +-
> > > >   drivers/infiniband/hw/ocrdma/ocrdma_main.c     |  4 +-
> > > >   drivers/infiniband/hw/qedr/main.c              |  4 +-
> > > >   drivers/infiniband/hw/usnic/usnic_ib_main.c    |  4 +-
> > > >   drivers/infiniband/hw/vmw_pvrdma/pvrdma_main.c |  4 +-
> > > >   drivers/infiniband/sw/rxe/rxe.c                |  4 +-
> > > >   drivers/infiniband/sw/rxe/rxe.h                |  2 +-
> > > >   drivers/infiniband/sw/rxe/rxe_net.c            |  4 +-
> > > >   drivers/infiniband/sw/rxe/rxe_verbs.c          |  4 +-
> > > >   drivers/infiniband/sw/rxe/rxe_verbs.h          |  2 +-
> > > >   include/rdma/ib_verbs.h                        |  8 +--
> > > >   24 files changed, 95 insertions(+), 86 deletions(-)
> > > 
> > > I think you ll need to update siw driver similarly.
> > > 
> > > rvt_register_device should be adapted to use the revised device registration API.
> > > hfi1/qib also need some rework.
> > 
> > It is necessary to make such a big change? :(
> > 
> > > rvt_alloc_device needs to be adapted for the new one-shot
> > > name + device allocation scheme.
> > > Hoping we can just use move the name setting from rvt_set_ibdev_name
> > 
> > I thought so..
> > 
> 
> The issue is hfi1 calls into rvt_alloc_device() which then calls
> _ib_alloc_device(). We don't have the name set at that point. So the obvious
> thing to do is move the rvt_set_ibdev_name(). However there is a catch.
> 
> The name gets set after allocating the device and the device table because
> we get the unit number as part of the xa_alloc_irq(hfi1_dev_table) call
> which needs the pointer to the devdata.
> 
> One solution would be to pass in the pointer for the driver's dev table and
> let rvt_alloc_device() do the xa_alloc_irq().

Just do:

	ret = xa_alloc_irq(&hfi1_dev_table, &unit, NULL, xa_limit_32b,
			GFP_KERNEL);
        if (ret)
                return ERR_PTR(ret);

	dd = (struct hfi1_devdata *)rvt_alloc_device(sizeof(*dd) + extra,
						     nports, unit);
	if (!dd) {
		xa_erase(&hfi1_dev_table, unit);
		return ERR_PTR(-ENOMEM);
	}
	xa_store(&hfi1_dev_table, unit, dd, GFP_KERNEL);

Jason

^ permalink raw reply	[flat|nested] 24+ messages in thread

* Re: [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device
  2020-04-29 13:50       ` Jason Gunthorpe
@ 2020-04-29 14:33         ` Dennis Dalessandro
  2020-04-29 14:57           ` Jason Gunthorpe
  0 siblings, 1 reply; 24+ messages in thread
From: Dennis Dalessandro @ 2020-04-29 14:33 UTC (permalink / raw)
  To: Jason Gunthorpe
  Cc: Saleem, Shiraz, Weihang Li, dledford, leon, linux-rdma, linuxarm,
	selvin.xavier, devesh.sharma, somnath.kotur,
	sriharsha.basavapatna, bharat, galpress, sleybo, Latif, Faisal,
	yishaih, mkalderon, aelior, benve, neescoba, pkaustub, aditr,
	pv-drivers, monis, kamalheib1, parav, markz, rd.dunlab

On 4/29/2020 9:50 AM, Jason Gunthorpe wrote:
> On Wed, Apr 29, 2020 at 09:32:16AM -0400, Dennis Dalessandro wrote:
>> On 4/27/2020 8:04 PM, Jason Gunthorpe wrote:
>>> On Mon, Apr 27, 2020 at 05:55:57PM +0000, Saleem, Shiraz wrote:
>>>>> Subject: [PATCH for-next] RDMA/core: Assign the name of device when allocating
>>>>> ib_device
>>>>>
>>>>> If the name of a device is assigned during ib_register_device(), some drivers have
>>>>> to use dev_*() for printing before register device. Bring
>>>>> assign_name() into ib_alloc_device(), so that drivers can use ibdev_*() anywhere.
>>>>>
>>>>> Signed-off-by: Weihang Li <liweihang@huawei.com>
>>>>>    drivers/infiniband/core/device.c               | 85 +++++++++++++-------------
>>>>>    drivers/infiniband/hw/bnxt_re/main.c           |  4 +-
>>>>>    drivers/infiniband/hw/cxgb4/device.c           |  2 +-
>>>>>    drivers/infiniband/hw/cxgb4/provider.c         |  2 +-
>>>>>    drivers/infiniband/hw/efa/efa_main.c           |  4 +-
>>>>>    drivers/infiniband/hw/hns/hns_roce_hw_v1.c     |  2 +-
>>>>>    drivers/infiniband/hw/hns/hns_roce_hw_v2.c     |  2 +-
>>>>>    drivers/infiniband/hw/hns/hns_roce_main.c      |  2 +-
>>>>>    drivers/infiniband/hw/i40iw/i40iw_verbs.c      |  4 +-
>>>>>    drivers/infiniband/hw/mlx4/main.c              |  4 +-
>>>>>    drivers/infiniband/hw/mlx5/ib_rep.c            |  8 ++-
>>>>>    drivers/infiniband/hw/mlx5/main.c              | 18 +++---
>>>>>    drivers/infiniband/hw/mthca/mthca_main.c       |  2 +-
>>>>>    drivers/infiniband/hw/mthca/mthca_provider.c   |  2 +-
>>>>>    drivers/infiniband/hw/ocrdma/ocrdma_main.c     |  4 +-
>>>>>    drivers/infiniband/hw/qedr/main.c              |  4 +-
>>>>>    drivers/infiniband/hw/usnic/usnic_ib_main.c    |  4 +-
>>>>>    drivers/infiniband/hw/vmw_pvrdma/pvrdma_main.c |  4 +-
>>>>>    drivers/infiniband/sw/rxe/rxe.c                |  4 +-
>>>>>    drivers/infiniband/sw/rxe/rxe.h                |  2 +-
>>>>>    drivers/infiniband/sw/rxe/rxe_net.c            |  4 +-
>>>>>    drivers/infiniband/sw/rxe/rxe_verbs.c          |  4 +-
>>>>>    drivers/infiniband/sw/rxe/rxe_verbs.h          |  2 +-
>>>>>    include/rdma/ib_verbs.h                        |  8 +--
>>>>>    24 files changed, 95 insertions(+), 86 deletions(-)
>>>>
>>>> I think you ll need to update siw driver similarly.
>>>>
>>>> rvt_register_device should be adapted to use the revised device registration API.
>>>> hfi1/qib also need some rework.
>>>
>>> It is necessary to make such a big change? :(
>>>
>>>> rvt_alloc_device needs to be adapted for the new one-shot
>>>> name + device allocation scheme.
>>>> Hoping we can just use move the name setting from rvt_set_ibdev_name
>>>
>>> I thought so..
>>>
>>
>> The issue is hfi1 calls into rvt_alloc_device() which then calls
>> _ib_alloc_device(). We don't have the name set at that point. So the obvious
>> thing to do is move the rvt_set_ibdev_name(). However there is a catch.
>>
>> The name gets set after allocating the device and the device table because
>> we get the unit number as part of the xa_alloc_irq(hfi1_dev_table) call
>> which needs the pointer to the devdata.
>>
>> One solution would be to pass in the pointer for the driver's dev table and
>> let rvt_alloc_device() do the xa_alloc_irq().
> 
> Just do:
> 
> 	ret = xa_alloc_irq(&hfi1_dev_table, &unit, NULL, xa_limit_32b,
> 			GFP_KERNEL);
>          if (ret)
>                  return ERR_PTR(ret);
> 
> 	dd = (struct hfi1_devdata *)rvt_alloc_device(sizeof(*dd) + extra,
> 						     nports, unit);
> 	if (!dd) {
> 		xa_erase(&hfi1_dev_table, unit);
> 		return ERR_PTR(-ENOMEM);
> 	}
> 	xa_store(&hfi1_dev_table, unit, dd, GFP_KERNEL);
> 
> Jason
> 

That works too.

-Denny

^ permalink raw reply	[flat|nested] 24+ messages in thread

* Re: [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device
  2020-04-29 14:33         ` Dennis Dalessandro
@ 2020-04-29 14:57           ` Jason Gunthorpe
  2020-04-29 16:17             ` Dennis Dalessandro
  0 siblings, 1 reply; 24+ messages in thread
From: Jason Gunthorpe @ 2020-04-29 14:57 UTC (permalink / raw)
  To: Dennis Dalessandro
  Cc: Saleem, Shiraz, Weihang Li, dledford, leon, linux-rdma, linuxarm,
	selvin.xavier, devesh.sharma, somnath.kotur,
	sriharsha.basavapatna, bharat, galpress, sleybo, Latif, Faisal,
	yishaih, mkalderon, aelior, benve, neescoba, pkaustub, aditr,
	pv-drivers, monis, kamalheib1, parav, markz, rd.dunlab

On Wed, Apr 29, 2020 at 10:33:19AM -0400, Dennis Dalessandro wrote:
> > > The issue is hfi1 calls into rvt_alloc_device() which then calls
> > > _ib_alloc_device(). We don't have the name set at that point. So the obvious
> > > thing to do is move the rvt_set_ibdev_name(). However there is a catch.
> > > 
> > > The name gets set after allocating the device and the device table because
> > > we get the unit number as part of the xa_alloc_irq(hfi1_dev_table) call
> > > which needs the pointer to the devdata.
> > > 
> > > One solution would be to pass in the pointer for the driver's dev table and
> > > let rvt_alloc_device() do the xa_alloc_irq().
> > 
> > Just do:
> > 
> > 	ret = xa_alloc_irq(&hfi1_dev_table, &unit, NULL, xa_limit_32b,
> > 			GFP_KERNEL);
> >          if (ret)
> >                  return ERR_PTR(ret);
> > 
> > 	dd = (struct hfi1_devdata *)rvt_alloc_device(sizeof(*dd) + extra,
> > 						     nports, unit);
> > 	if (!dd) {
> > 		xa_erase(&hfi1_dev_table, unit);
> > 		return ERR_PTR(-ENOMEM);
> > 	}
> > 	xa_store(&hfi1_dev_table, unit, dd, GFP_KERNEL);
> 
> That works too.

I don't understand why this xarray exists anyhow? Why can't the core
code assign the name with its internal algorithm?

There are several places that iterate over the xarray, but that
doesn't need a unit #, could be a linked list or use the core device
list.

The only actual lookup in hfi1_reset_device() looks pointless, the
caller already has the dd??

Jason

^ permalink raw reply	[flat|nested] 24+ messages in thread

* Re: [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device
  2020-04-29 14:57           ` Jason Gunthorpe
@ 2020-04-29 16:17             ` Dennis Dalessandro
  0 siblings, 0 replies; 24+ messages in thread
From: Dennis Dalessandro @ 2020-04-29 16:17 UTC (permalink / raw)
  To: Jason Gunthorpe
  Cc: Saleem, Shiraz, Weihang Li, dledford, leon, linux-rdma, linuxarm,
	selvin.xavier, devesh.sharma, somnath.kotur,
	sriharsha.basavapatna, bharat, galpress, sleybo, Latif, Faisal,
	yishaih, mkalderon, aelior, benve, neescoba, pkaustub, aditr,
	pv-drivers, monis, kamalheib1, parav, markz, rd.dunlab

On 4/29/2020 10:57 AM, Jason Gunthorpe wrote:
> On Wed, Apr 29, 2020 at 10:33:19AM -0400, Dennis Dalessandro wrote:
>>>> The issue is hfi1 calls into rvt_alloc_device() which then calls
>>>> _ib_alloc_device(). We don't have the name set at that point. So the obvious
>>>> thing to do is move the rvt_set_ibdev_name(). However there is a catch.
>>>>
>>>> The name gets set after allocating the device and the device table because
>>>> we get the unit number as part of the xa_alloc_irq(hfi1_dev_table) call
>>>> which needs the pointer to the devdata.
>>>>
>>>> One solution would be to pass in the pointer for the driver's dev table and
>>>> let rvt_alloc_device() do the xa_alloc_irq().
>>>
>>> Just do:
>>>
>>> 	ret = xa_alloc_irq(&hfi1_dev_table, &unit, NULL, xa_limit_32b,
>>> 			GFP_KERNEL);
>>>           if (ret)
>>>                   return ERR_PTR(ret);
>>>
>>> 	dd = (struct hfi1_devdata *)rvt_alloc_device(sizeof(*dd) + extra,
>>> 						     nports, unit);
>>> 	if (!dd) {
>>> 		xa_erase(&hfi1_dev_table, unit);
>>> 		return ERR_PTR(-ENOMEM);
>>> 	}
>>> 	xa_store(&hfi1_dev_table, unit, dd, GFP_KERNEL);
>>
>> That works too.
> 
> I don't understand why this xarray exists anyhow? Why can't the core
> code assign the name with its internal algorithm?
> 
> There are several places that iterate over the xarray, but that
> doesn't need a unit #, could be a linked list or use the core device
> list.
> 
> The only actual lookup in hfi1_reset_device() looks pointless, the
> caller already has the dd??

That's a fair point, the caller has the dev pointer which it uses to 
find the dd. I'll take a look at getting rid of it.

-Denny




^ permalink raw reply	[flat|nested] 24+ messages in thread

* Re: [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device
  2020-04-29  8:37             ` Leon Romanovsky
@ 2020-04-30  7:55               ` liweihang
  0 siblings, 0 replies; 24+ messages in thread
From: liweihang @ 2020-04-30  7:55 UTC (permalink / raw)
  To: Leon Romanovsky
  Cc: Jason Gunthorpe, dledford, linux-rdma, Linuxarm, selvin.xavier,
	devesh.sharma, somnath.kotur, sriharsha.basavapatna, bharat,
	galpress, sleybo, faisal.latif, shiraz.saleem, yishaih,
	mkalderon, aelior, benve, neescoba, pkaustub, aditr, pv-drivers,
	monis, kamalheib1, parav, markz, rd.dunlab, dennis.dalessandro

On 2020/4/29 16:37, Leon Romanovsky wrote:
> On Tue, Apr 28, 2020 at 12:39:49PM +0000, liweihang wrote:
>> On 2020/4/28 19:19, Leon Romanovsky wrote:
>>> On Tue, Apr 28, 2020 at 08:00:29AM +0000, liweihang wrote:
>>>> On 2020/4/27 20:03, Leon Romanovsky wrote:
>>>>>>>>  /**
>>>>>>>>   * _ib_alloc_device - allocate an IB device struct
>>>>>>>>   * @size:size of structure to allocate
>>>>>>>> + * @name: unique string device name. This may include a '%' which will
>>>>>>> It looks like all drivers are setting "%" in their name and "name" can
>>>>>>> be changed to be "prefix".
>>>>>> Does hfi? I thought the name was forced there for some port swapped
>>>>>> reason?
>>>>> This patch doesn't touch HFI, nothing prohibits from us to make this
>>>>> conversion work for all drivers except HFI and for the HFI add some
>>>>> different callback. There is no need to make API harder just because
>>>>> one driver needs it.
>>>>>
>>>>> Thanks
>>>>>
>>>>>> Jason
>>>>
>>>> Hi Jason and Leon,
>>>>
>>>> I missed some codes related to assign_name() in this series including
>>>> hfi/qib as Shiraz pointed. And I found a "name" without a "%" in following
>>>> funtions in core/nldev.c, and ibdev_name will be used for rxe/siw later.
>>>>
>>>> 	static int nldev_newlink(struct sk_buff *skb, struct nlmsghdr *nlh,
>>>> 				  struct netlink_ext_ack *extack)
>>>> 	{
>>>> 		...
>>>>
>>>> 		nla_strlcpy(ibdev_name, tb[RDMA_NLDEV_ATTR_DEV_NAME],
>>>> 			    sizeof(ibdev_name));
>>>> 		if (strchr(ibdev_name, '%') || strlen(ibdev_name) == 0)
>>>> 			return -EINVAL;
>>>>
>>>> 		...
>>>> 	}
>>>>
>>>> I'm not familiar with these codes, but I think the judgment in assign_name()
>>>> is for the situaion like above.
>>>>
>>>> 	if (strchr(name, '%'))
>>>> 		ret = alloc_name(device, name);
>>>> 	else
>>>> 		ret = dev_set_name(&device->dev, name);
>>>>
>>>> So is it a better idea to keep using "name" instead of "prefix"?
>>>
>>> nldev_newlink() doesn't call to ib_alloc_device() and alloc_name(). The
>>> check pointed by you is for the user input.
>>>
>>
>> Hi Leon,
>>
>> nldev_newlink() will call "ops->newlink(ibdev_name, ndev)", and it point to
>> siw_newlink() in siw_main.c. And then it will call ib_alloc_device() and
>> ib_register_device().
>>
>> According to the code I pointed before, it seems that nldev_newlink()
>> expects users to input a name without '%', and then passes this name
>> to assign_name(). I think siw/rxe have to call ib_alloc_device() with
>> a name without '%', so we can't treat it as a prefix and add "_%d" to
>> it like for other drivers.
> 
> The opposite is actually true.
> 
> The reason why newlink checks for % is due to the expectation in
> alloc_name() to have a name with % for numbered devices, which is
> nice, but the better API will be to provide "prefix" and a flag
> if to append an index or not.
> 
> Thanks
> 

I see, thank you.

>>
>>>>
>>>> Thanks
>>>> Weihang
>>>
>>
> 


^ permalink raw reply	[flat|nested] 24+ messages in thread

end of thread, other threads:[~2020-04-30  7:56 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-26  9:31 [PATCH for-next] RDMA/core: Assign the name of device when allocating ib_device Weihang Li
2020-04-27  8:45 ` Gal Pressman
2020-04-27  9:02   ` liweihang
2020-04-27 11:47 ` Leon Romanovsky
2020-04-27 11:52   ` Jason Gunthorpe
2020-04-27 12:03     ` Leon Romanovsky
2020-04-28  8:00       ` liweihang
2020-04-28 11:19         ` Leon Romanovsky
2020-04-28 12:39           ` liweihang
2020-04-29  8:37             ` Leon Romanovsky
2020-04-30  7:55               ` liweihang
2020-04-28  1:29   ` liweihang
2020-04-27 17:55 ` Saleem, Shiraz
2020-04-28  0:04   ` Jason Gunthorpe
2020-04-29 13:32     ` Dennis Dalessandro
2020-04-29 13:50       ` Jason Gunthorpe
2020-04-29 14:33         ` Dennis Dalessandro
2020-04-29 14:57           ` Jason Gunthorpe
2020-04-29 16:17             ` Dennis Dalessandro
2020-04-28  6:17   ` liweihang
2020-04-27 20:26 ` kbuild test robot
2020-04-27 20:26   ` kbuild test robot
2020-04-28  6:29 ` kbuild test robot
2020-04-28  6:29   ` kbuild test robot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.