RDMA: Change ops->init_port to ops->port_groups
authorJason Gunthorpe <jgg@nvidia.com>
Fri, 11 Jun 2021 16:00:32 +0000 (19:00 +0300)
committerJason Gunthorpe <jgg@nvidia.com>
Wed, 16 Jun 2021 23:58:31 +0000 (20:58 -0300)
init_port was only being used to register sysfs attributes against the
port kobject. Now that all users are creating static attribute_group's we
can simply set the attribute_group list in the ops and the core code can
just handle it directly.

This makes all the sysfs management quite straightforward and prevents any
driver from abusing the naked port kobject in future because no driver
code can access it.

Link: https://lore.kernel.org/r/114f68f3d921460eafe14cea5a80ca65d81729c3.1623427137.git.leonro@nvidia.com
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
drivers/infiniband/core/device.c
drivers/infiniband/core/sysfs.c
drivers/infiniband/hw/hfi1/hfi.h
drivers/infiniband/hw/hfi1/sysfs.c
drivers/infiniband/hw/hfi1/verbs.c
drivers/infiniband/hw/qib/qib.h
drivers/infiniband/hw/qib/qib_sysfs.c
drivers/infiniband/hw/qib/qib_verbs.c
drivers/infiniband/sw/rdmavt/vt.c
include/rdma/ib_sysfs.h
include/rdma/ib_verbs.h

index 030a4041b2e03bb0759156fe35346682b75ca0c3..2cbd77933ea51e6e31cdf7415bb980203b08073b 100644 (file)
@@ -1703,7 +1703,7 @@ int ib_device_set_netns_put(struct sk_buff *skb,
         * port_cleanup infrastructure is implemented, this limitation will be
         * removed.
         */
-       if (!dev->ops.disassociate_ucontext || dev->ops.init_port ||
+       if (!dev->ops.disassociate_ucontext || dev->ops.port_groups ||
            ib_devices_shared_netns) {
                ret = -EOPNOTSUPP;
                goto ns_err;
@@ -2668,7 +2668,6 @@ void ib_set_device_ops(struct ib_device *dev, const struct ib_device_ops *ops)
        SET_DEVICE_OP(dev_ops, get_vf_config);
        SET_DEVICE_OP(dev_ops, get_vf_guid);
        SET_DEVICE_OP(dev_ops, get_vf_stats);
-       SET_DEVICE_OP(dev_ops, init_port);
        SET_DEVICE_OP(dev_ops, iw_accept);
        SET_DEVICE_OP(dev_ops, iw_add_ref);
        SET_DEVICE_OP(dev_ops, iw_connect);
@@ -2691,6 +2690,7 @@ void ib_set_device_ops(struct ib_device *dev, const struct ib_device_ops *ops)
        SET_DEVICE_OP(dev_ops, modify_wq);
        SET_DEVICE_OP(dev_ops, peek_cq);
        SET_DEVICE_OP(dev_ops, poll_cq);
+       SET_DEVICE_OP(dev_ops, port_groups);
        SET_DEVICE_OP(dev_ops, post_recv);
        SET_DEVICE_OP(dev_ops, post_send);
        SET_DEVICE_OP(dev_ops, post_srq_recv);
index e550a7eb37f6382e74757aeb8302f8a92b52125a..09a2e1066df047e41cfe38e1c57d4a98ef581a29 100644 (file)
@@ -128,22 +128,6 @@ static ssize_t port_attr_store(struct kobject *kobj,
        return port_attr->store(p->ibdev, p->port_num, port_attr, buf, count);
 }
 
-int ib_port_sysfs_create_groups(struct ib_device *ibdev, u32 port_num,
-                               const struct attribute_group **groups)
-{
-       return sysfs_create_groups(&ibdev->port_data[port_num].sysfs->kobj,
-                                  groups);
-}
-EXPORT_SYMBOL_GPL(ib_port_sysfs_create_groups);
-
-void ib_port_sysfs_remove_groups(struct ib_device *ibdev, u32 port_num,
-                                const struct attribute_group **groups)
-{
-       return sysfs_remove_groups(&ibdev->port_data[port_num].sysfs->kobj,
-                                  groups);
-}
-EXPORT_SYMBOL_GPL(ib_port_sysfs_remove_groups);
-
 struct ib_device *ib_port_sysfs_get_ibdev_kobj(struct kobject *kobj,
                                               u32 *port_num)
 {
@@ -1252,6 +1236,11 @@ static struct ib_port *setup_port(struct ib_core_device *coredev, int port_num,
        ret = sysfs_create_groups(&p->kobj, p->groups_list);
        if (ret)
                goto err_del;
+       if (is_full_dev) {
+               ret = sysfs_create_groups(&p->kobj, device->ops.port_groups);
+               if (ret)
+                       goto err_groups;
+       }
 
        list_add_tail(&p->kobj.entry, &coredev->port_list);
        if (device->port_data && is_full_dev)
@@ -1259,6 +1248,8 @@ static struct ib_port *setup_port(struct ib_core_device *coredev, int port_num,
 
        return p;
 
+err_groups:
+       sysfs_remove_groups(&p->kobj, p->groups_list);
 err_del:
        kobject_del(&p->kobj);
 err_put:
@@ -1266,12 +1257,16 @@ err_put:
        return ERR_PTR(ret);
 }
 
-static void destroy_port(struct ib_port *port)
+static void destroy_port(struct ib_core_device *coredev, struct ib_port *port)
 {
+       bool is_full_dev = &port->ibdev->coredev == coredev;
+
        if (port->ibdev->port_data &&
            port->ibdev->port_data[port->port_num].sysfs == port)
                port->ibdev->port_data[port->port_num].sysfs = NULL;
        list_del(&port->kobj.entry);
+       if (is_full_dev)
+               sysfs_remove_groups(&port->kobj, port->ibdev->ops.port_groups);
        sysfs_remove_groups(&port->kobj, port->groups_list);
        kobject_del(&port->kobj);
        kobject_put(&port->kobj);
@@ -1397,7 +1392,7 @@ void ib_free_port_attrs(struct ib_core_device *coredev)
                struct ib_port *port = container_of(p, struct ib_port, kobj);
 
                destroy_gid_attrs(port);
-               destroy_port(port);
+               destroy_port(coredev, port);
        }
 
        kobject_put(coredev->ports_kobj);
@@ -1406,7 +1401,6 @@ void ib_free_port_attrs(struct ib_core_device *coredev)
 int ib_setup_port_attrs(struct ib_core_device *coredev)
 {
        struct ib_device *device = rdma_device_to_ibdev(&coredev->dev);
-       bool is_full_dev = &device->coredev == coredev;
        u32 port_num;
        int ret;
 
@@ -1432,13 +1426,6 @@ int ib_setup_port_attrs(struct ib_core_device *coredev)
                ret = setup_gid_attrs(port, &attr);
                if (ret)
                        goto err_put;
-
-               if (device->ops.init_port && is_full_dev) {
-                       ret = device->ops.init_port(device, port_num,
-                                                   &port->kobj);
-                       if (ret)
-                               goto err_put;
-               }
        }
        return 0;
 
index 87e101fb1f658abe1bef1f07016a1a4071b33851..5632ef4d159c250afb2b08d152ae5f4ef7549903 100644 (file)
@@ -2184,12 +2184,11 @@ static inline bool hfi1_packet_present(struct hfi1_ctxtdata *rcd)
 
 extern const char ib_hfi1_version[];
 extern const struct attribute_group ib_hfi1_attr_group;
+extern const struct attribute_group *hfi1_attr_port_groups[];
 
 int hfi1_device_create(struct hfi1_devdata *dd);
 void hfi1_device_remove(struct hfi1_devdata *dd);
 
-int hfi1_create_port_files(struct ib_device *ibdev, u32 port_num,
-                          struct kobject *kobj);
 int hfi1_verbs_register_sysfs(struct hfi1_devdata *dd);
 void hfi1_verbs_unregister_sysfs(struct hfi1_devdata *dd);
 /* Hook for sysfs read of QSFP */
index 98bb0b3aac09f2c4debd20e555c77186d4ee5a9a..acfcbedebe0d69fe60ab47788a19ee5f64879936 100644 (file)
@@ -599,7 +599,7 @@ const struct attribute_group ib_hfi1_attr_group = {
        .attrs = hfi1_attributes,
 };
 
-static const struct attribute_group *hfi1_port_groups[] = {
+const struct attribute_group *hfi1_attr_port_groups[] = {
        &port_cc_group,
        &port_sc2vl_group,
        &port_sl2sc_group,
@@ -607,12 +607,6 @@ static const struct attribute_group *hfi1_port_groups[] = {
        NULL,
 };
 
-int hfi1_create_port_files(struct ib_device *ibdev, u32 port_num,
-                          struct kobject *kobj)
-{
-       return ib_port_sysfs_create_groups(ibdev, port_num, hfi1_port_groups);
-}
-
 struct sde_attribute {
        struct attribute attr;
        ssize_t (*show)(struct sdma_engine *sde, char *buf);
@@ -741,8 +735,4 @@ void hfi1_verbs_unregister_sysfs(struct hfi1_devdata *dd)
        /* Unwind operations in hfi1_verbs_register_sysfs() */
        for (i = 0; i < dd->num_sdma; i++)
                kobject_put(&dd->per_sdma[i].kobj);
-
-       for (i = 0; i < dd->num_pports; i++)
-               ib_port_sysfs_remove_groups(&dd->verbs_dev.rdi.ibdev, i + 1,
-                                           hfi1_port_groups);
 }
index 85deba07a6754ba09d995f622b03dc0fc9da0cb1..49c6ed267a478ed045a601196b98729c44455aab 100644 (file)
@@ -1791,8 +1791,8 @@ static const struct ib_device_ops hfi1_dev_ops = {
        .alloc_rdma_netdev = hfi1_vnic_alloc_rn,
        .get_dev_fw_str = hfi1_get_dev_fw_str,
        .get_hw_stats = get_hw_stats,
-       .init_port = hfi1_create_port_files,
        .modify_device = modify_device,
+       .port_groups = hfi1_attr_port_groups,
        /* keep process mad in the driver */
        .process_mad = hfi1_process_mad,
        .rdma_netdev_get_params = hfi1_ipoib_rn_get_params,
index b8a2deb5b4d2955e6d1ad88f718cfd2200828cd9..9363bccfc6e7189e026f5e43461eabd991bd7aa9 100644 (file)
@@ -1361,13 +1361,11 @@ static inline u32 qib_get_rcvhdrtail(const struct qib_ctxtdata *rcd)
 
 extern const char ib_qib_version[];
 extern const struct attribute_group qib_attr_group;
+extern const struct attribute_group *qib_attr_port_groups[];
 
 int qib_device_create(struct qib_devdata *);
 void qib_device_remove(struct qib_devdata *);
 
-int qib_create_port_files(struct ib_device *ibdev, u32 port_num,
-                         struct kobject *kobj);
-void qib_verbs_unregister_sysfs(struct qib_devdata *);
 /* Hook for sysfs read of QSFP */
 extern int qib_qsfp_dump(struct qib_pportdata *ppd, char *buf, int len);
 
index a1e22c49871266eb0f67d554988260497ec75761..d57e49de6650be34fe6b9712492df39839b71d08 100644 (file)
@@ -545,7 +545,7 @@ static const struct attribute_group port_diagc_group = {
 
 /* End diag_counters */
 
-static const struct attribute_group *qib_port_groups[] = {
+const struct attribute_group *qib_attr_port_groups[] = {
        &port_linkcontrol_group,
        &port_ccmgta_attribute_group,
        &port_sl2vl_group,
@@ -733,21 +733,3 @@ static struct attribute *qib_attributes[] = {
 const struct attribute_group qib_attr_group = {
        .attrs = qib_attributes,
 };
-
-int qib_create_port_files(struct ib_device *ibdev, u32 port_num,
-                         struct kobject *kobj)
-{
-       return ib_port_sysfs_create_groups(ibdev, port_num, qib_port_groups);
-}
-
-/*
- * Unregister and remove our files in /sys/class/infiniband.
- */
-void qib_verbs_unregister_sysfs(struct qib_devdata *dd)
-{
-       int i;
-
-       for (i = 0; i < dd->num_pports; i++)
-               ib_port_sysfs_remove_groups(&dd->verbs_dev.rdi.ibdev, i,
-                                           qib_port_groups);
-}
index d17d034ecdfd9f4081c97c115ce1f7ce74701be5..8640a75d61d9ac9dd29765018f3fba437aa3c873 100644 (file)
@@ -1483,7 +1483,7 @@ static const struct ib_device_ops qib_dev_ops = {
        .owner = THIS_MODULE,
        .driver_id = RDMA_DRIVER_QIB,
 
-       .init_port = qib_create_port_files,
+       .port_groups = qib_attr_port_groups,
        .modify_device = qib_modify_device,
        .process_mad = qib_process_mad,
 };
@@ -1644,8 +1644,6 @@ void qib_unregister_ib_device(struct qib_devdata *dd)
 {
        struct qib_ibdev *dev = &dd->verbs_dev;
 
-       qib_verbs_unregister_sysfs(dd);
-
        rvt_unregister_device(&dd->verbs_dev.rdi);
 
        if (!list_empty(&dev->piowait))
index 12ebe041a5da9b67f934614a8da5c0617fb23b0a..1db89ee4c162333a8f47c35271e16d7a1970d9b3 100644 (file)
@@ -418,7 +418,7 @@ static noinline int check_support(struct rvt_dev_info *rdi, int verb)
                 * These functions are not part of verbs specifically but are
                 * required for rdmavt to function.
                 */
-               if ((!rdi->ibdev.ops.init_port) ||
+               if ((!rdi->ibdev.ops.port_groups) ||
                    (!rdi->driver_f.get_pci_dev))
                        return -EINVAL;
                break;
index f869d0e4fd3030835b145f1eefb4bcae9939bac4..3b77cfd74d9a3019278a88f844cd4a456100eef6 100644 (file)
@@ -31,10 +31,6 @@ struct ib_port_attribute {
 #define IB_PORT_ATTR_WO(_name)                                                 \
        struct ib_port_attribute ib_port_attr_##_name = __ATTR_WO(_name)
 
-int ib_port_sysfs_create_groups(struct ib_device *ibdev, u32 port_num,
-                               const struct attribute_group **groups);
-void ib_port_sysfs_remove_groups(struct ib_device *ibdev, u32 port_num,
-                                const struct attribute_group **groups);
 struct ib_device *ib_port_sysfs_get_ibdev_kobj(struct kobject *kobj,
                                               u32 *port_num);
 
index 5ca1cb82a543a4b110880fb2c2280637c034557e..303471585dde81ab93e62a003276903df7c64ff7 100644 (file)
@@ -2300,6 +2300,8 @@ struct ib_device_ops {
        u32 uverbs_abi_ver;
        unsigned int uverbs_no_driver_id_binding:1;
 
+       const struct attribute_group **port_groups;
+
        int (*post_send)(struct ib_qp *qp, const struct ib_send_wr *send_wr,
                         const struct ib_send_wr **bad_send_wr);
        int (*post_recv)(struct ib_qp *qp, const struct ib_recv_wr *recv_wr,
@@ -2546,12 +2548,7 @@ struct ib_device_ops {
         */
        int (*get_hw_stats)(struct ib_device *device,
                            struct rdma_hw_stats *stats, u32 port, int index);
-       /*
-        * This function is called once for each port when a ib device is
-        * registered.
-        */
-       int (*init_port)(struct ib_device *device, u32 port_num,
-                        struct kobject *port_sysfs);
+
        /**
         * Allows rdma drivers to add their own restrack attributes.
         */