From: <jerinj@marvell.com>
To: <dev@dpdk.org>
Cc: <thomas@monjalon.net>, <david.marchand@redhat.com>,
<bruce.richardson@intel.com>, <dmitry.kozliuk@gmail.com>,
<navasile@linux.microsoft.com>, <dmitrym@microsoft.com>,
<pallavi.kadam@intel.com>, <konstantin.ananyev@intel.com>,
<ruifeng.wang@arm.com>, <viktorin@rehivetech.com>,
<drc@linux.vnet.ibm.com>, Jerin Jacob <jerinj@marvell.com>
Subject: [dpdk-dev] [PATCH v2 4/6] eal/x86: support register dump for oops
Date: Tue, 17 Aug 2021 08:57:21 +0530 [thread overview]
Message-ID: <20210817032723.3997054-5-jerinj@marvell.com> (raw)
In-Reply-To: <20210817032723.3997054-1-jerinj@marvell.com>
From: Jerin Jacob <jerinj@marvell.com>
Dump the x86 arch state register in oops
handling routine.
Signed-off-by: Jerin Jacob <jerinj@marvell.com>
---
lib/eal/unix/eal_oops.c | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/lib/eal/unix/eal_oops.c b/lib/eal/unix/eal_oops.c
index a7f00ecd4e..a0f9526d96 100644
--- a/lib/eal/unix/eal_oops.c
+++ b/lib/eal/unix/eal_oops.c
@@ -133,6 +133,38 @@ stack_code_dump(void *stack, void *code)
mem32_dump(code);
oops_print("\n");
}
+
+#if defined(RTE_ARCH_X86_64) && defined(RTE_EXEC_ENV_LINUX)
+static void
+archinfo_dump(ucontext_t *uc)
+{
+
+ mcontext_t *mc = &uc->uc_mcontext;
+
+ oops_print("R8 : 0x%.16llx ", mc->gregs[REG_R8]);
+ oops_print("R9 : 0x%.16llx\n", mc->gregs[REG_R9]);
+ oops_print("R10: 0x%.16llx ", mc->gregs[REG_R10]);
+ oops_print("R11: 0x%.16llx\n", mc->gregs[REG_R11]);
+ oops_print("R12: 0x%.16llx ", mc->gregs[REG_R12]);
+ oops_print("R13: 0x%.16llx\n", mc->gregs[REG_R13]);
+ oops_print("R14: 0x%.16llx ", mc->gregs[REG_R14]);
+ oops_print("R15: 0x%.16llx\n", mc->gregs[REG_R15]);
+ oops_print("RAX: 0x%.16llx ", mc->gregs[REG_RAX]);
+ oops_print("RBX: 0x%.16llx\n", mc->gregs[REG_RBX]);
+ oops_print("RCX: 0x%.16llx ", mc->gregs[REG_RCX]);
+ oops_print("RDX: 0x%.16llx\n", mc->gregs[REG_RDX]);
+ oops_print("RBP: 0x%.16llx ", mc->gregs[REG_RBP]);
+ oops_print("RSP: 0x%.16llx\n", mc->gregs[REG_RSP]);
+ oops_print("RSI: 0x%.16llx ", mc->gregs[REG_RSI]);
+ oops_print("RDI: 0x%.16llx\n", mc->gregs[REG_RDI]);
+ oops_print("RIP: 0x%.16llx ", mc->gregs[REG_RIP]);
+ oops_print("EFL: 0x%.16llx\n", mc->gregs[REG_EFL]);
+
+ stack_code_dump((void *)mc->gregs[REG_RSP], (void *)mc->gregs[REG_RIP]);
+}
+
+#else
+
static void
archinfo_dump(ucontext_t *uc)
{
@@ -141,6 +173,8 @@ archinfo_dump(ucontext_t *uc)
stack_code_dump(NULL, NULL);
}
+#endif
+
static void
default_signal_handler_invoke(int sig)
{
--
2.32.0
next prev parent reply other threads:[~2021-08-17 3:30 UTC|newest]
Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-07-30 8:49 [dpdk-dev] 0/6] support oops handling jerinj
2021-07-30 8:49 ` [dpdk-dev] 1/6] eal: introduce oops handling API jerinj
2021-08-17 3:27 ` [dpdk-dev] [PATCH v2 0/6] support oops handling jerinj
2021-08-17 3:27 ` [dpdk-dev] [PATCH v2 1/6] eal: introduce oops handling API jerinj
2021-08-17 3:53 ` Stephen Hemminger
2021-08-17 7:38 ` Jerin Jacob
2021-08-17 15:09 ` Stephen Hemminger
2021-08-17 15:27 ` Jerin Jacob
2021-08-17 15:52 ` Stephen Hemminger
2021-08-18 9:37 ` Jerin Jacob
2021-08-18 16:46 ` Stephen Hemminger
2021-08-18 18:04 ` Jerin Jacob
2021-08-17 3:27 ` [dpdk-dev] [PATCH v2 2/6] eal: oops handling API implementation jerinj
2021-08-17 3:52 ` Stephen Hemminger
2021-08-17 10:24 ` Jerin Jacob
2021-08-17 3:27 ` [dpdk-dev] [PATCH v2 3/6] eal: support libunwind based backtrace jerinj
2021-08-17 3:27 ` jerinj [this message]
2021-08-17 3:27 ` [dpdk-dev] [PATCH v2 5/6] eal/arm64: support register dump for oops jerinj
2021-08-17 3:27 ` [dpdk-dev] [PATCH v2 6/6] test/oops: support unit test case for oops handling APIs jerinj
2021-09-06 4:17 ` [dpdk-dev] [PATCH v3 0/6] support oops handling jerinj
2021-09-06 4:17 ` [dpdk-dev] [PATCH v3 1/6] eal: introduce oops handling API jerinj
2021-09-06 4:17 ` [dpdk-dev] [PATCH v3 2/6] eal: oops handling API implementation jerinj
2021-09-06 4:17 ` [dpdk-dev] [PATCH v3 3/6] eal: support libunwind based backtrace jerinj
2022-01-27 20:47 ` Stephen Hemminger
2022-01-28 4:33 ` Jerin Jacob
2022-01-28 8:41 ` Thomas Monjalon
2022-01-28 14:27 ` Jerin Jacob
2022-01-28 17:05 ` Stephen Hemminger
2021-09-06 4:17 ` [dpdk-dev] [PATCH v3 4/6] eal/x86: support register dump for oops jerinj
2021-09-06 4:17 ` [dpdk-dev] [PATCH v3 5/6] eal/arm64: " jerinj
2021-09-06 4:17 ` [dpdk-dev] [PATCH v3 6/6] test/oops: support unit test case for oops handling APIs jerinj
2021-09-21 17:30 ` [dpdk-dev] [PATCH v3 0/6] support oops handling Thomas Monjalon
2021-09-21 17:54 ` Jerin Jacob
2021-09-22 7:34 ` Thomas Monjalon
2021-09-22 8:03 ` Jerin Jacob
2021-09-22 8:33 ` Thomas Monjalon
2021-09-22 8:49 ` Jerin Jacob
2021-07-30 8:49 ` [dpdk-dev] 2/6] eal: oops handling API implementation jerinj
2021-08-02 22:46 ` David Christensen
2021-07-30 8:49 ` [dpdk-dev] 3/6] eal: support libunwind based backtrace jerinj
2021-07-30 8:49 ` [dpdk-dev] 4/6] eal/x86: support register dump for oops jerinj
2021-07-30 8:49 ` [dpdk-dev] 5/6] eal/arm64: " jerinj
2021-08-02 22:49 ` David Christensen
2021-08-16 16:24 ` Jerin Jacob
2021-07-30 8:49 ` [dpdk-dev] 6/6] test/oops: support unit test case for oops handling APIs jerinj
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=20210817032723.3997054-5-jerinj@marvell.com \
--to=jerinj@marvell.com \
--cc=bruce.richardson@intel.com \
--cc=david.marchand@redhat.com \
--cc=dev@dpdk.org \
--cc=dmitry.kozliuk@gmail.com \
--cc=dmitrym@microsoft.com \
--cc=drc@linux.vnet.ibm.com \
--cc=konstantin.ananyev@intel.com \
--cc=navasile@linux.microsoft.com \
--cc=pallavi.kadam@intel.com \
--cc=ruifeng.wang@arm.com \
--cc=thomas@monjalon.net \
--cc=viktorin@rehivetech.com \
/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).