]> git.proxmox.com Git - mirror_iproute2.git/blobdiff - rdma/link.c
rdma: Simplify code to reuse existing functions
[mirror_iproute2.git] / rdma / link.c
index 7a6d4b7e356d7ee228df6921941067e41a538f08..89e81b84b2ccae8c0401c4ae2e972e57f7022c73 100644 (file)
@@ -1,11 +1,6 @@
+// SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB
 /*
  * link.c      RDMA tool
- *
- *              This program is free software; you can redistribute it and/or
- *              modify it under the terms of the GNU General Public License
- *              as published by the Free Software Foundation; either version
- *              2 of the License, or (at your option) any later version.
- *
  * Authors:     Leon Romanovsky <leonro@mellanox.com>
  */
 
@@ -19,7 +14,7 @@ static int link_help(struct rd *rd)
 
 static const char *caps_to_str(uint32_t idx)
 {
-#define RDMA_PORT_FLAGS(x) \
+#define RDMA_PORT_FLAGS_LOW(x) \
        x(RESERVED, 0) \
        x(SM, 1) \
        x(NOTICE, 2) \
@@ -53,13 +48,39 @@ static const char *caps_to_str(uint32_t idx)
        x(MULT_FDB, 30) \
        x(HIERARCHY_INFO, 31)
 
-       enum { RDMA_PORT_FLAGS(RDMA_BITMAP_ENUM) };
+#define RDMA_PORT_FLAGS_HIGH(x) \
+       x(SET_NODE_DESC, 0) \
+       x(EXT_INFO, 1) \
+       x(VIRT, 2) \
+       x(SWITCH_POR_STATE_TABLE, 3) \
+       x(LINK_WIDTH_2X, 4) \
+       x(LINK_SPEED_HDR, 5)
+
+       /*
+        * Separation below is needed to allow compilation of rdmatool
+        * on 32bits systems. On such systems, C-enum is limited to be
+        * int and can't hold more than 32 bits.
+        */
+       enum { RDMA_PORT_FLAGS_LOW(RDMA_BITMAP_ENUM) };
+       enum { RDMA_PORT_FLAGS_HIGH(RDMA_BITMAP_ENUM) };
 
        static const char * const
-               rdma_port_names[] = { RDMA_PORT_FLAGS(RDMA_BITMAP_NAMES) };
-       #undef RDMA_PORT_FLAGS
+               rdma_port_names_low[] = { RDMA_PORT_FLAGS_LOW(RDMA_BITMAP_NAMES) };
+       static const char * const
+               rdma_port_names_high[] = { RDMA_PORT_FLAGS_HIGH(RDMA_BITMAP_NAMES) };
+       uint32_t high_idx;
+       #undef RDMA_PORT_FLAGS_LOW
+       #undef RDMA_PORT_FLAGS_HIGH
+
+       if (idx < ARRAY_SIZE(rdma_port_names_low) && rdma_port_names_low[idx])
+               return rdma_port_names_low[idx];
 
-       return rdma_port_names[idx];
+       high_idx = idx - ARRAY_SIZE(rdma_port_names_low);
+       if (high_idx < ARRAY_SIZE(rdma_port_names_high) &&
+           rdma_port_names_high[high_idx])
+               return rdma_port_names_high[high_idx];
+
+       return "UNKNOWN";
 }
 
 static void link_print_caps(struct rd *rd, struct nlattr **tb)