From: Jason Gunthorpe <jgg@nvidia.com>
To: Leon Romanovsky <leon@kernel.org>
Cc: Doug Ledford <dledford@redhat.com>,
Avihai Horon <avihaih@nvidia.com>, <linux-rdma@vger.kernel.org>
Subject: Re: [PATCH rdma-next v3 3/4] RDMA/core: Introduce new GID table query API
Date: Thu, 1 Oct 2020 21:03:56 -0300 [thread overview]
Message-ID: <20201002000356.GA1213435@nvidia.com> (raw)
In-Reply-To: <20200923165015.2491894-4-leon@kernel.org>
On Wed, Sep 23, 2020 at 07:50:14PM +0300, Leon Romanovsky wrote:
> From: Avihai Horon <avihaih@nvidia.com>
>
> Introduce rdma_query_gid_table which enables querying all the GID tables
> of a given device and copying the attributes of all valid GID entries to
> a provided buffer.
>
> This API provides a faster way to query a GID table using single call and
> will be used in libibverbs to improve current approach that requires
> multiple calls to open, close and read multiple sysfs files for a single
> GID table entry.
>
> Signed-off-by: Avihai Horon <avihaih@nvidia.com>
> Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
> drivers/infiniband/core/cache.c | 73 ++++++++++++++++++++++++-
> include/rdma/ib_cache.h | 3 +
> include/uapi/rdma/ib_user_ioctl_verbs.h | 8 +++
> 3 files changed, 81 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/infiniband/core/cache.c b/drivers/infiniband/core/cache.c
> index cf49ac0b0aa6..211b88d17bc7 100644
> +++ b/drivers/infiniband/core/cache.c
> @@ -1247,6 +1247,74 @@ rdma_get_gid_attr(struct ib_device *device, u8 port_num, int index)
> }
> EXPORT_SYMBOL(rdma_get_gid_attr);
>
> +/**
> + * rdma_query_gid_table - Reads GID table entries of all the ports of a device up to max_entries.
> + * @device: The device to query.
> + * @entries: Entries where GID entries are returned.
> + * @max_entries: Maximum number of entries that can be returned.
> + * Entries array must be allocated to hold max_entries number of entries.
> + * @num_entries: Updated to the number of entries that were successfully read.
> + *
> + * Returns number of entries on success or appropriate error code.
> + */
> +ssize_t rdma_query_gid_table(struct ib_device *device,
> + struct ib_uverbs_gid_entry *entries,
> + size_t max_entries)
> +{
> + const struct ib_gid_attr *gid_attr;
> + ssize_t num_entries = 0, ret;
> + struct ib_gid_table *table;
> + unsigned int port_num, i;
> + struct net_device *ndev;
> + unsigned long flags;
> +
> + rdma_for_each_port(device, port_num) {
> + if (!rdma_ib_or_roce(device, port_num))
> + continue;
> +
> + table = rdma_gid_table(device, port_num);
> + read_lock_irqsave(&table->rwlock, flags);
> + for (i = 0; i < table->sz; i++) {
> + if (!is_gid_entry_valid(table->data_vec[i]))
> + continue;
> + if (num_entries >= max_entries) {
> + ret = -EINVAL;
> + goto err;
> + }
> +
> + gid_attr = &table->data_vec[i]->attr;
> +
> + memcpy(&entries->gid, &gid_attr->gid,
> + sizeof(gid_attr->gid));
> + entries->gid_index = gid_attr->index;
> + entries->port_num = gid_attr->port_num;
> + entries->gid_type = gid_attr->gid_type;
> + rcu_read_lock();
> + ndev = rdma_read_gid_attr_ndev_rcu(gid_attr);
This can't call rdma_read_gid_attr_ndev_rcu(), that also obtains the
rwlock. rwlock can't be nested.
Why didn't lockdep explode on this?
This whole thing can just be:
ndev = rcu_dereference_protected(gid_attr->ndev, lockdep_is_held(&table->rwlock))
if (ndev)
entries->netdev_ifindex = ndev->ifindex;
Jason
next prev parent reply other threads:[~2020-10-02 0:04 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-09-23 16:50 [PATCH rdma-next v3 0/4] Query GID table API Leon Romanovsky
2020-09-23 16:50 ` [PATCH rdma-next v3 1/4] RDMA/core: Change rdma_get_gid_attr returned error code Leon Romanovsky
2020-09-23 16:50 ` [PATCH rdma-next v3 2/4] RDMA/core: Modify enum ib_gid_type and enum rdma_network_type Leon Romanovsky
2020-09-23 16:50 ` [PATCH rdma-next v3 3/4] RDMA/core: Introduce new GID table query API Leon Romanovsky
2020-10-02 0:03 ` Jason Gunthorpe [this message]
2020-10-02 11:16 ` Leon Romanovsky
2020-09-23 16:50 ` [PATCH rdma-next v3 4/4] RDMA/uverbs: Expose the new GID query API to user space Leon Romanovsky
2020-10-02 0:32 ` [PATCH rdma-next v3 0/4] Query GID table API Jason Gunthorpe
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20201002000356.GA1213435@nvidia.com \
--to=jgg@nvidia.com \
--cc=avihaih@nvidia.com \
--cc=dledford@redhat.com \
--cc=leon@kernel.org \
--cc=linux-rdma@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).