From: Selvin Xavier <selvin.xavier@broadcom.com>
To: leon@kernel.org, jgg@ziepe.ca
Cc: linux-rdma@vger.kernel.org, andrew.gospodarek@broadcom.com,
kalesh-anakkur.purayil@broadcom.com, netdev@vger.kernel.org,
davem@davemloft.net, edumazet@google.com, kuba@kernel.org,
abeni@redhat.com, horms@kernel.org, michael.chan@broadcom.com,
Selvin Xavier <selvin.xavier@broadcom.com>
Subject: [PATCH rdma-next 0/9] RDMA/bnxt_re: Driver Debug Enhancements
Date: Thu, 20 Feb 2025 10:34:47 -0800 [thread overview]
Message-ID: <1740076496-14227-1-git-send-email-selvin.xavier@broadcom.com> (raw)
For debugging issues in the field, we need to track some of
the resources destroyed in the past. This is primarily required
for tracking certain QPs that encountered errors, leading to
application exits. A framework has been implemented to
save this information and retrieve it during coredump collection.
The Broadcom bnxt L2 driver supports collecting driver dumps
using the ethtool -w option. This feature now also supports
collecting coredump information from the bnxt_re auxiliary driver.
Two new callbacks have been implemented to exchange dump
information supported by the auxbus bnxt_re driver.
The bnxt_re driver caches certain hardware information before
resources are destroyed in the HW. Additionally,
some resource information from the host is necessary
for gathering meaningful debug information. Both types
of information are cached by the driver for a finite (1024 for now)
number of resources.
Please review and apply.
Thanks,
Selvin Xavier
Kashyap Desai (3):
RDMA/bnxt_re : Initialize the HW context dump collection
RDMA/bnxt_re: Get the resource contexts from the HW
RDMA/bnxt_re: Dump the HW context information
Michael Chan (2):
bnxt_en: Introduce ULP coredump callbacks
RDMA/bnxt_re: Support the dump infrastructure
Saravanan Vajravel (3):
RDMA/bnxt_re: Add support for collecting the Queue dumps
RDMA/bnxt_re: Cache the QP information
RDMA/bnxt_re: Dump the debug information in snapdump
Selvin Xavier (1):
RDMA/bnxt_re: Add support for changing the snap dump level
drivers/infiniband/hw/bnxt_re/bnxt_re.h | 75 ++++++
drivers/infiniband/hw/bnxt_re/debugfs.c | 49 ++++
drivers/infiniband/hw/bnxt_re/ib_verbs.c | 185 ++++++++++++-
drivers/infiniband/hw/bnxt_re/ib_verbs.h | 42 +++
drivers/infiniband/hw/bnxt_re/main.c | 290 ++++++++++++++++++++-
drivers/infiniband/hw/bnxt_re/qplib_fp.c | 47 +++-
drivers/infiniband/hw/bnxt_re/qplib_fp.h | 16 +-
drivers/infiniband/hw/bnxt_re/qplib_rcfw.c | 2 +
drivers/infiniband/hw/bnxt_re/qplib_rcfw.h | 12 +
drivers/infiniband/hw/bnxt_re/qplib_res.h | 14 +
drivers/infiniband/hw/bnxt_re/qplib_sp.c | 15 +-
drivers/infiniband/hw/bnxt_re/qplib_sp.h | 3 +-
drivers/infiniband/hw/bnxt_re/roce_hsi.h | 2 +
drivers/net/ethernet/broadcom/bnxt/bnxt_coredump.c | 12 +-
drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.c | 57 ++++
drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.h | 22 ++
16 files changed, 817 insertions(+), 26 deletions(-)
--
2.5.5
next reply other threads:[~2025-02-20 18:55 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-20 18:34 Selvin Xavier [this message]
2025-02-20 18:34 ` [PATCH rdma-next 1/9] RDMA/bnxt_re: Add support for collecting the Queue dumps Selvin Xavier
2025-02-20 18:34 ` [PATCH rdma-next 2/9] RDMA/bnxt_re: Cache the QP information Selvin Xavier
2025-02-20 18:34 ` [PATCH rdma-next 3/9] RDMA/bnxt_re : Initialize the HW context dump collection Selvin Xavier
2025-02-20 18:34 ` [PATCH rdma-next 4/9] RDMA/bnxt_re: Get the resource contexts from the HW Selvin Xavier
2025-02-20 18:34 ` [PATCH rdma-next 5/9] bnxt_en: Introduce ULP coredump callbacks Selvin Xavier
2025-02-22 0:40 ` Jakub Kicinski
2025-02-20 18:34 ` [PATCH rdma-next 6/9] RDMA/bnxt_re: Support the dump infrastructure Selvin Xavier
2025-02-20 18:34 ` [PATCH rdma-next 7/9] RDMA/bnxt_re: Dump the debug information in snapdump Selvin Xavier
2025-02-20 18:34 ` [PATCH rdma-next 8/9] RDMA/bnxt_re: Dump the HW context information Selvin Xavier
2025-02-20 18:34 ` [PATCH rdma-next 9/9] RDMA/bnxt_re: Add support for changing the snap dump level Selvin Xavier
2025-02-23 13:34 ` [PATCH rdma-next 0/9] RDMA/bnxt_re: Driver Debug Enhancements Leon Romanovsky
2025-02-24 9:00 ` Selvin Xavier
2025-04-01 13:41 ` Jason Gunthorpe
2025-04-01 20:48 ` Andy Gospodarek
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=1740076496-14227-1-git-send-email-selvin.xavier@broadcom.com \
--to=selvin.xavier@broadcom.com \
--cc=abeni@redhat.com \
--cc=andrew.gospodarek@broadcom.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=horms@kernel.org \
--cc=jgg@ziepe.ca \
--cc=kalesh-anakkur.purayil@broadcom.com \
--cc=kuba@kernel.org \
--cc=leon@kernel.org \
--cc=linux-rdma@vger.kernel.org \
--cc=michael.chan@broadcom.com \
--cc=netdev@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