RDMA: Add and use rdma_for_each_port
authorJason Gunthorpe <jgg@mellanox.com>
Wed, 13 Feb 2019 04:12:47 +0000 (21:12 -0700)
committerJason Gunthorpe <jgg@mellanox.com>
Tue, 19 Feb 2019 17:13:39 +0000 (10:13 -0700)
We have many loops iterating over all of the end port numbers on a struct
ib_device, simplify them with a for_each helper.

Reviewed-by: Parav Pandit <parav@mellanox.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
12 files changed:
.clang-format
drivers/infiniband/core/cache.c
drivers/infiniband/core/cma.c
drivers/infiniband/core/device.c
drivers/infiniband/core/mad.c
drivers/infiniband/core/nldev.c
drivers/infiniband/core/security.c
drivers/infiniband/core/sysfs.c
drivers/infiniband/core/user_mad.c
drivers/infiniband/ulp/ipoib/ipoib_main.c
drivers/infiniband/ulp/srp/ib_srp.c
include/rdma/ib_verbs.h

index 335ce29ab8132c35ba6da2bbe8e1092760cc904a..201a4f531b90a5ad360ac2f8b6cec374a7c05d44 100644 (file)
@@ -361,6 +361,7 @@ ForEachMacros:
   - 'radix_tree_for_each_slot'
   - 'radix_tree_for_each_tagged'
   - 'rbtree_postorder_for_each_entry_safe'
+  - 'rdma_for_each_port'
   - 'resource_list_for_each_entry'
   - 'resource_list_for_each_entry_safe'
   - 'rhl_for_each_entry_rcu'
index 2338d0b3a0cab87ea1f25e7fd126d16aeee6f494..3d137d8381a9447bd880a0e663eedd32e14f2d01 100644 (file)
@@ -1428,7 +1428,7 @@ static void ib_cache_event(struct ib_event_handler *handler,
 
 int ib_cache_setup_one(struct ib_device *device)
 {
-       int p;
+       unsigned int p;
        int err;
 
        rwlock_init(&device->cache.lock);
@@ -1447,8 +1447,8 @@ int ib_cache_setup_one(struct ib_device *device)
                return err;
        }
 
-       for (p = 0; p <= rdma_end_port(device) - rdma_start_port(device); ++p)
-               ib_cache_update(device, p + rdma_start_port(device), true);
+       rdma_for_each_port (device, p)
+               ib_cache_update(device, p, true);
 
        INIT_IB_EVENT_HANDLER(&device->cache.event_handler,
                              device, ib_cache_event);
index c43512752b8ac182d0addfa5a9e46d0e5e80766c..68c997be242930d5e92def4c6345d49cd89771d2 100644 (file)
@@ -659,7 +659,7 @@ static int cma_acquire_dev_by_src_ip(struct rdma_id_private *id_priv)
        struct cma_device *cma_dev;
        enum ib_gid_type gid_type;
        int ret = -ENODEV;
-       u8 port;
+       unsigned int port;
 
        if (dev_addr->dev_type != ARPHRD_INFINIBAND &&
            id_priv->id.ps == RDMA_PS_IPOIB)
@@ -673,8 +673,7 @@ static int cma_acquire_dev_by_src_ip(struct rdma_id_private *id_priv)
 
        mutex_lock(&lock);
        list_for_each_entry(cma_dev, &dev_list, list) {
-               for (port = rdma_start_port(cma_dev->device);
-                    port <= rdma_end_port(cma_dev->device); port++) {
+               rdma_for_each_port (cma_dev->device, port) {
                        gidp = rdma_protocol_roce(cma_dev->device, port) ?
                               &iboe_gid : &gid;
                        gid_type = cma_dev->default_gid_type[port - 1];
@@ -4548,7 +4547,7 @@ static void cma_add_one(struct ib_device *device)
        if (!cma_dev->default_roce_tos)
                goto free_gid_type;
 
-       for (i = rdma_start_port(device); i <= rdma_end_port(device); i++) {
+       rdma_for_each_port (device, i) {
                supported_gids = roce_gid_type_mask_support(device, i);
                WARN_ON(!supported_gids);
                if (supported_gids & (1 << CMA_PREFERRED_ROCE_GID_TYPE))
index f7e206033d39d9ab200c626c3a65f17f700b72e8..71582f848a9c81000ac02948ca17a380801559ad 100644 (file)
@@ -470,10 +470,8 @@ static int verify_immutable(const struct ib_device *dev, u8 port)
 
 static int read_port_immutable(struct ib_device *device)
 {
+       unsigned int port;
        int ret;
-       u8 start_port = rdma_start_port(device);
-       u8 end_port = rdma_end_port(device);
-       u8 port;
 
        /**
         * device->port_immutable is indexed directly by the port number to make
@@ -482,13 +480,13 @@ static int read_port_immutable(struct ib_device *device)
         * Therefore port_immutable is declared as a 1 based array with
         * potential empty slots at the beginning.
         */
-       device->port_immutable = kcalloc(end_port + 1,
-                                        sizeof(*device->port_immutable),
-                                        GFP_KERNEL);
+       device->port_immutable =
+               kcalloc(rdma_end_port(device) + 1,
+                       sizeof(*device->port_immutable), GFP_KERNEL);
        if (!device->port_immutable)
                return -ENOMEM;
 
-       for (port = start_port; port <= end_port; ++port) {
+       rdma_for_each_port (device, port) {
                ret = device->ops.get_port_immutable(
                        device, port, &device->port_immutable[port]);
                if (ret)
@@ -540,9 +538,9 @@ static void ib_policy_change_task(struct work_struct *work)
 
        down_read(&devices_rwsem);
        xa_for_each_marked (&devices, index, dev, DEVICE_REGISTERED) {
-               int i;
+               unsigned int i;
 
-               for (i = rdma_start_port(dev); i <= rdma_end_port(dev); i++) {
+               rdma_for_each_port (dev, i) {
                        u64 sp;
                        int ret = ib_get_cached_subnet_prefix(dev,
                                                              i,
@@ -1060,10 +1058,9 @@ void ib_enum_roce_netdev(struct ib_device *ib_dev,
                         roce_netdev_callback cb,
                         void *cookie)
 {
-       u8 port;
+       unsigned int port;
 
-       for (port = rdma_start_port(ib_dev); port <= rdma_end_port(ib_dev);
-            port++)
+       rdma_for_each_port (ib_dev, port)
                if (rdma_protocol_roce(ib_dev, port)) {
                        struct net_device *idev = NULL;
 
@@ -1217,9 +1214,10 @@ int ib_find_gid(struct ib_device *device, union ib_gid *gid,
                u8 *port_num, u16 *index)
 {
        union ib_gid tmp_gid;
-       int ret, port, i;
+       unsigned int port;
+       int ret, i;
 
-       for (port = rdma_start_port(device); port <= rdma_end_port(device); ++port) {
+       rdma_for_each_port (device, port) {
                if (!rdma_protocol_ib(device, port))
                        continue;
 
index 7870823bac47267291d87f495818175eae7e0f47..e742a6a2c1380c50b068e02b251aac7ba663f715 100644 (file)
@@ -3326,9 +3326,9 @@ error:
 
 static void ib_mad_remove_device(struct ib_device *device, void *client_data)
 {
-       int i;
+       unsigned int i;
 
-       for (i = rdma_start_port(device); i <= rdma_end_port(device); i++) {
+       rdma_for_each_port (device, i) {
                if (!rdma_cap_ib_mad(device, i))
                        continue;
 
index e7350d9d60e9b748c189c6bc8b325548083b739b..85f6f2bcce4010c9101bb8c2ae6fd97130416779 100644 (file)
@@ -774,7 +774,7 @@ static int nldev_port_get_dumpit(struct sk_buff *skb,
        u32 idx = 0;
        u32 ifindex;
        int err;
-       u32 p;
+       unsigned int p;
 
        err = nlmsg_parse(cb->nlh, 0, tb, RDMA_NLDEV_ATTR_MAX - 1,
                          nldev_policy, NULL);
@@ -786,7 +786,7 @@ static int nldev_port_get_dumpit(struct sk_buff *skb,
        if (!device)
                return -EINVAL;
 
-       for (p = rdma_start_port(device); p <= rdma_end_port(device); ++p) {
+       rdma_for_each_port (device, p) {
                /*
                 * The dumpit function returns all information from specific
                 * index. This specific index is taken from the netlink
index dad6a94a43f30a17ee3b4984f9a8765b0484e1a2..492702b836003c6b9d67b4d891263379b08f5cd8 100644 (file)
@@ -422,12 +422,15 @@ void ib_close_shared_qp_security(struct ib_qp_security *sec)
 
 int ib_create_qp_security(struct ib_qp *qp, struct ib_device *dev)
 {
-       u8 i = rdma_start_port(dev);
+       unsigned int i;
        bool is_ib = false;
        int ret;
 
-       while (i <= rdma_end_port(dev) && !is_ib)
+       rdma_for_each_port (dev, i) {
                is_ib = rdma_protocol_ib(dev, i++);
+               if (is_ib)
+                       break;
+       }
 
        /* If this isn't an IB device don't create the security context */
        if (!is_ib)
@@ -561,9 +564,9 @@ void ib_security_cache_change(struct ib_device *device,
 void ib_security_release_port_pkey_list(struct ib_device *device)
 {
        struct pkey_index_qp_list *pkey, *tmp_pkey;
-       int i;
+       unsigned int i;
 
-       for (i = rdma_start_port(device); i <= rdma_end_port(device); i++) {
+       rdma_for_each_port (device, i) {
                list_for_each_entry_safe(pkey,
                                         tmp_pkey,
                                         &device->port_pkey_list[i].pkey_list,
index 9335b15c2e38e62ca6eb095951af1dadf4442d3d..9b6a065bdfa509814ce3f24fe610fd55c2a01f67 100644 (file)
@@ -1308,23 +1308,17 @@ static void ib_free_port_attrs(struct ib_device *device)
 
 static int ib_setup_port_attrs(struct ib_device *device)
 {
+       unsigned int port;
        int ret;
-       int i;
 
        device->ports_kobj = kobject_create_and_add("ports", &device->dev.kobj);
        if (!device->ports_kobj)
                return -ENOMEM;
 
-       if (rdma_cap_ib_switch(device)) {
-               ret = add_port(device, 0);
+       rdma_for_each_port (device, port) {
+               ret = add_port(device, port);
                if (ret)
                        goto err_put;
-       } else {
-               for (i = 1; i <= device->phys_port_cnt; ++i) {
-                       ret = add_port(device, i);
-                       if (ret)
-                               goto err_put;
-               }
        }
 
        return 0;
index 3ebd211a87edf20d20d29a5254a5287224c9f946..02b7947ab215b2866a0ff7e84d31c3ab01d75562 100644 (file)
@@ -1323,14 +1323,15 @@ free:
 static void ib_umad_remove_one(struct ib_device *device, void *client_data)
 {
        struct ib_umad_device *umad_dev = client_data;
-       int i;
+       unsigned int i;
 
        if (!umad_dev)
                return;
 
-       for (i = 0; i <= rdma_end_port(device) - rdma_start_port(device); ++i) {
-               if (rdma_cap_ib_mad(device, i + rdma_start_port(device)))
-                       ib_umad_kill_port(&umad_dev->ports[i]);
+       rdma_for_each_port (device, i) {
+               if (rdma_cap_ib_mad(device, i))
+                       ib_umad_kill_port(
+                               &umad_dev->ports[i - rdma_start_port(device)]);
        }
        /* balances kref_init() */
        ib_umad_dev_put(umad_dev);
index ee4cca80f00b650e9db71e8cb344c484c21177f8..48eda16db1a7b56f75d85c66f7f03861586ca59e 100644 (file)
@@ -2495,7 +2495,7 @@ static void ipoib_add_one(struct ib_device *device)
        struct list_head *dev_list;
        struct net_device *dev;
        struct ipoib_dev_priv *priv;
-       int p;
+       unsigned int p;
        int count = 0;
 
        dev_list = kmalloc(sizeof(*dev_list), GFP_KERNEL);
@@ -2504,7 +2504,7 @@ static void ipoib_add_one(struct ib_device *device)
 
        INIT_LIST_HEAD(dev_list);
 
-       for (p = rdma_start_port(device); p <= rdma_end_port(device); ++p) {
+       rdma_for_each_port (device, p) {
                if (!rdma_protocol_ib(device, p))
                        continue;
                dev = ipoib_add_port("ib%d", device, p);
index 84184910f0380c2499d6b78dcb6e63bada25956c..151f4eba84b87204b94d8d5a87bf6c8292a365dc 100644 (file)
@@ -4127,7 +4127,8 @@ static void srp_add_one(struct ib_device *device)
        struct srp_device *srp_dev;
        struct ib_device_attr *attr = &device->attrs;
        struct srp_host *host;
-       int mr_page_shift, p;
+       int mr_page_shift;
+       unsigned int p;
        u64 max_pages_per_mr;
        unsigned int flags = 0;
 
@@ -4194,7 +4195,7 @@ static void srp_add_one(struct ib_device *device)
                WARN_ON_ONCE(srp_dev->global_rkey == 0);
        }
 
-       for (p = rdma_start_port(device); p <= rdma_end_port(device); ++p) {
+       rdma_for_each_port (device, p) {
                host = srp_add_port(srp_dev, p);
                if (host)
                        list_add_tail(&host->list, &srp_dev->dev_list);
index 2a17c2b3007389d142689c556df347a92d9e4fbc..fa0edd6ae33ca8c16e2883e6ed9b092b410b91ec 100644 (file)
@@ -2827,6 +2827,16 @@ static inline u8 rdma_start_port(const struct ib_device *device)
        return rdma_cap_ib_switch(device) ? 0 : 1;
 }
 
+/**
+ * rdma_for_each_port - Iterate over all valid port numbers of the IB device
+ * @device - The struct ib_device * to iterate over
+ * @iter - The unsigned int to store the port number
+ */
+#define rdma_for_each_port(device, iter)                                       \
+       for (iter = rdma_start_port(device + BUILD_BUG_ON_ZERO(!__same_type(   \
+                                                    unsigned int, iter)));    \
+            iter <= rdma_end_port(device); (iter)++)
+
 /**
  * rdma_end_port - Return the last valid port number for the device
  * specified