From: Leon Romanovsky <leon@kernel.org> To: Doug Ledford <dledford@redhat.com>, Jason Gunthorpe <jgg@mellanox.com> Cc: Leon Romanovsky <leonro@mellanox.com>, Jakub Kicinski <kuba@kernel.org>, Lijun Ou <oulijun@huawei.com>, linux-rdma@vger.kernel.org, Maor Gottlieb <maorg@mellanox.com>, netdev@vger.kernel.org, Potnuri Bharat Teja <bharat@chelsio.com>, Saeed Mahameed <saeedm@mellanox.com>, Weihang Li <liweihang@huawei.com>, "Wei Hu(Xavier)" <huwei87@hisilicon.com> Subject: [PATCH rdma-next v1 00/11] RAW format dumps through RDMAtool Date: Wed, 27 May 2020 16:53:57 +0300 [thread overview] Message-ID: <20200527135408.480878-1-leon@kernel.org> (raw) From: Leon Romanovsky <leonro@mellanox.com> Changelog: v1: * Maor dropped controversial change to dummy interface. v0: https://lore.kernel.org/linux-rdma/20200513095034.208385-1-leon@kernel.org Hi, The following series adds support to get the RDMA resource data in RAW format. The main motivation for doing this is to enable vendors to return the entire QP/CQ/MR data without a need from the vendor to set each field separately. Thanks Maor Gottlieb (11): net/mlx5: Export resource dump interface net/mlx5: Add support in query QP, CQ and MKEY segments RDMA/core: Don't call fill_res_entry for PD RDMA: Add dedicated MR resource tracker function RDMA: Add dedicated CQ resource tracker function RDMA: Add dedicated QP resource tracker function RDMA: Add dedicated CM_ID resource tracker function RDMA: Add support to dump resource tracker in RAW format RDMA/mlx5: Add support to get QP resource in raw format RDMA/mlx5: Add support to get CQ resource in RAW format RDMA/mlx5: Add support to get MR resource in RAW format drivers/infiniband/core/device.c | 7 +- drivers/infiniband/core/nldev.c | 128 +++++++++--------- drivers/infiniband/hw/cxgb4/iw_cxgb4.h | 7 +- drivers/infiniband/hw/cxgb4/provider.c | 11 +- drivers/infiniband/hw/cxgb4/restrack.c | 33 ++--- drivers/infiniband/hw/hns/hns_roce_device.h | 4 +- drivers/infiniband/hw/hns/hns_roce_main.c | 2 +- drivers/infiniband/hw/hns/hns_roce_restrack.c | 17 +-- drivers/infiniband/hw/mlx5/main.c | 6 +- drivers/infiniband/hw/mlx5/mlx5_ib.h | 11 +- drivers/infiniband/hw/mlx5/restrack.c | 105 +++++++++++--- .../mellanox/mlx5/core/diag/rsc_dump.c | 6 + .../mellanox/mlx5/core/diag/rsc_dump.h | 33 +---- .../diag => include/linux/mlx5}/rsc_dump.h | 25 ++-- include/rdma/ib_verbs.h | 13 +- include/uapi/rdma/rdma_netlink.h | 2 + 16 files changed, 225 insertions(+), 185 deletions(-) copy {drivers/net/ethernet/mellanox/mlx5/core/diag => include/linux/mlx5}/rsc_dump.h (68%) -- 2.26.2
next reply other threads:[~2020-05-27 13:54 UTC|newest] Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-05-27 13:53 Leon Romanovsky [this message] 2020-05-27 13:53 ` [PATCH mlx5-next v1 01/11] net/mlx5: Export resource dump interface Leon Romanovsky 2020-05-27 13:53 ` [PATCH mlx5-next v1 02/11] net/mlx5: Add support in query QP, CQ and MKEY segments Leon Romanovsky 2020-05-27 13:54 ` [PATCH rdma-next v1 03/11] RDMA/core: Don't call fill_res_entry for PD Leon Romanovsky 2020-05-27 13:54 ` [PATCH rdma-next v1 04/11] RDMA: Add dedicated MR resource tracker function Leon Romanovsky 2020-05-27 13:54 ` [PATCH rdma-next v1 05/11] RDMA: Add dedicated CQ " Leon Romanovsky 2020-05-27 13:54 ` [PATCH rdma-next v1 06/11] RDMA: Add dedicated QP " Leon Romanovsky 2020-05-27 13:54 ` [PATCH rdma-next v1 07/11] RDMA: Add dedicated CM_ID " Leon Romanovsky 2020-05-27 13:54 ` [PATCH rdma-next v1 08/11] RDMA: Add support to dump resource tracker in RAW format Leon Romanovsky 2020-05-27 13:54 ` [PATCH rdma-next v1 09/11] RDMA/mlx5: Add support to get QP resource in raw format Leon Romanovsky 2020-05-27 13:54 ` [PATCH rdma-next v1 10/11] RDMA/mlx5: Add support to get CQ resource in RAW format Leon Romanovsky 2020-05-27 13:54 ` [PATCH rdma-next v1 11/11] RDMA/mlx5: Add support to get MR " Leon Romanovsky 2020-05-29 23:31 ` Jason Gunthorpe 2020-05-31 9:54 ` Leon Romanovsky 2020-06-01 12:26 ` Jason Gunthorpe 2020-06-02 6:21 ` Leon Romanovsky 2020-06-02 12:27 ` Jason Gunthorpe 2020-06-02 13:23 ` Leon Romanovsky 2020-06-07 8:47 ` Maor Gottlieb 2020-06-08 11:46 ` Jason Gunthorpe 2020-06-09 8:27 ` Maor Gottlieb 2020-06-09 11:42 ` 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=20200527135408.480878-1-leon@kernel.org \ --to=leon@kernel.org \ --cc=bharat@chelsio.com \ --cc=dledford@redhat.com \ --cc=huwei87@hisilicon.com \ --cc=jgg@mellanox.com \ --cc=kuba@kernel.org \ --cc=leonro@mellanox.com \ --cc=linux-rdma@vger.kernel.org \ --cc=liweihang@huawei.com \ --cc=maorg@mellanox.com \ --cc=netdev@vger.kernel.org \ --cc=oulijun@huawei.com \ --cc=saeedm@mellanox.com \ --subject='Re: [PATCH rdma-next v1 00/11] RAW format dumps through RDMAtool' \ /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
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).