IB/core: Simplify ib_query_gid to always refer to cache
authorParav Pandit <parav@mellanox.com>
Sun, 1 Apr 2018 12:08:20 +0000 (15:08 +0300)
committerJason Gunthorpe <jgg@mellanox.com>
Wed, 4 Apr 2018 03:33:50 +0000 (21:33 -0600)
Currently following inconsistencies exist.
1. ib_query_gid() returns GID from the software cache for a RoCE port
and returns GID from the HCA for an IB port.
This is incorrect because software GID cache is maintained regardless
of HCA port type.

2. GID is queries from the HCA via ib_query_gid and updated in the
software cache for IB link layer. Both of them might not be in sync.

ULPs such as SRP initiator, SRP target, IPoIB driver have historically
used ib_query_gid() API to query the GID. However CM used cached version
during CM processing, When software cache was introduced, this
inconsitency remained.

In order to simplify, improve readability and avoid link layer
specific above inconsistencies, this patch brings following changes.

1. ib_query_gid() always refers to the cache layer regardless of link
layer.

2. cache module who reads the GID entry from HCA and builds the cache,
directly invokes the HCA provider verb's query_gid() callback function.

3. ib_query_port() is being called in early stage where GID cache is not
yet build while reading port immutable property. Therefore it needs to
read the default GID from the HCA for IB link layer to publish the
subnet prefix.

Signed-off-by: Parav Pandit <parav@mellanox.com>
Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
drivers/infiniband/core/cache.c
drivers/infiniband/core/device.c

index 552f3c8dc24697b3003100e68015a768615c884a..e03eaf0c7527324f29b39ddd1c5637dde5104fa1 100644 (file)
@@ -1116,8 +1116,8 @@ static void ib_cache_update(struct ib_device *device,
 
        if (!use_roce_gid_table) {
                for (i = 0;  i < gid_cache->table_len; ++i) {
-                       ret = ib_query_gid(device, port, i,
-                                          gid_cache->table + i, NULL);
+                       ret = device->query_gid(device, port, i,
+                                               gid_cache->table + i);
                        if (ret) {
                                pr_warn("ib_query_gid failed (%d) for %s (index %d)\n",
                                        ret, device->name, i);
index 5d79e8de31f56493257a33405ace6a48236bafe6..601ff782e5f3310eb667ecf7f7e80a0afff0ab02 100644 (file)
@@ -853,7 +853,7 @@ int ib_query_port(struct ib_device *device,
        if (rdma_port_get_link_layer(device, port_num) != IB_LINK_LAYER_INFINIBAND)
                return 0;
 
-       err = ib_query_gid(device, port_num, 0, &gid, NULL);
+       err = device->query_gid(device, port_num, 0, &gid);
        if (err)
                return err;
 
@@ -871,22 +871,13 @@ EXPORT_SYMBOL(ib_query_port);
  * @attr: Returned GID attributes related to this GID index (only in RoCE).
  *   NULL means ignore.
  *
- * ib_query_gid() fetches the specified GID table entry.
+ * ib_query_gid() fetches the specified GID table entry from the cache.
  */
 int ib_query_gid(struct ib_device *device,
                 u8 port_num, int index, union ib_gid *gid,
                 struct ib_gid_attr *attr)
 {
-       if (rdma_protocol_roce(device, port_num))
-               return ib_get_cached_gid(device, port_num, index, gid, attr);
-
-       if (attr)
-               return -EINVAL;
-
-       if (!device->query_gid)
-               return -EOPNOTSUPP;
-
-       return device->query_gid(device, port_num, index, gid);
+       return ib_get_cached_gid(device, port_num, index, gid, attr);
 }
 EXPORT_SYMBOL(ib_query_gid);