From: Nicholas Piggin <npiggin@gmail.com>
To: Mahesh J Salgaonkar <mahesh@linux.vnet.ibm.com>
Cc: linuxppc-dev <linuxppc-dev@ozlabs.org>,
"Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>,
Michael Ellerman <mpe@ellerman.id.au>,
Ananth Narayan <ananth@in.ibm.com>,
Laurent Dufour <ldufour@linux.vnet.ibm.com>,
"Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>,
Michal Suchanek <msuchanek@suse.com>
Subject: Re: [PATCH v8 4/5] powerpc/pseries: Dump the SLB contents on SLB MCE errors.
Date: Mon, 20 Aug 2018 21:20:15 +1000 [thread overview]
Message-ID: <20180820212015.163c12ff@roar.ozlabs.ibm.com> (raw)
In-Reply-To: <153469851207.21878.16970346624861719956.stgit@jupiter.in.ibm.com>
On Sun, 19 Aug 2018 22:38:32 +0530
Mahesh J Salgaonkar <mahesh@linux.vnet.ibm.com> wrote:
> From: Mahesh Salgaonkar <mahesh@linux.vnet.ibm.com>
>
> If we get a machine check exceptions due to SLB errors then dump the
> current SLB contents which will be very much helpful in debugging the
> root cause of SLB errors. Introduce an exclusive buffer per cpu to hold
> faulty SLB entries. In real mode mce handler saves the old SLB contents
> into this buffer accessible through paca and print it out later in virtual
> mode.
>
> With this patch the console will log SLB contents like below on SLB MCE
> errors:
>
> [ 507.297236] SLB contents of cpu 0x1
> [ 507.297237] Last SLB entry inserted at slot 16
> [ 507.297238] 00 c000000008000000 400ea1b217000500
> [ 507.297239] 1T ESID= c00000 VSID= ea1b217 LLP:100
> [ 507.297240] 01 d000000008000000 400d43642f000510
> [ 507.297242] 1T ESID= d00000 VSID= d43642f LLP:110
> [ 507.297243] 11 f000000008000000 400a86c85f000500
> [ 507.297244] 1T ESID= f00000 VSID= a86c85f LLP:100
> [ 507.297245] 12 00007f0008000000 4008119624000d90
> [ 507.297246] 1T ESID= 7f VSID= 8119624 LLP:110
> [ 507.297247] 13 0000000018000000 00092885f5150d90
> [ 507.297247] 256M ESID= 1 VSID= 92885f5150 LLP:110
> [ 507.297248] 14 0000010008000000 4009e7cb50000d90
> [ 507.297249] 1T ESID= 1 VSID= 9e7cb50 LLP:110
> [ 507.297250] 15 d000000008000000 400d43642f000510
> [ 507.297251] 1T ESID= d00000 VSID= d43642f LLP:110
> [ 507.297252] 16 d000000008000000 400d43642f000510
> [ 507.297253] 1T ESID= d00000 VSID= d43642f LLP:110
> [ 507.297253] ----------------------------------
> [ 507.297254] SLB cache ptr value = 3
> [ 507.297254] Valid SLB cache entries:
> [ 507.297255] 00 EA[0-35]= 7f000
> [ 507.297256] 01 EA[0-35]= 1
> [ 507.297257] 02 EA[0-35]= 1000
> [ 507.297257] Rest of SLB cache entries:
> [ 507.297258] 03 EA[0-35]= 7f000
> [ 507.297258] 04 EA[0-35]= 1
> [ 507.297259] 05 EA[0-35]= 1000
> [ 507.297260] 06 EA[0-35]= 12
> [ 507.297260] 07 EA[0-35]= 7f000
>
> Suggested-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
> Suggested-by: Michael Ellerman <mpe@ellerman.id.au>
> Signed-off-by: Mahesh Salgaonkar <mahesh@linux.vnet.ibm.com>
> ---
>
> Changes in V8:
> - Limit the slb saving to single level of mce recursion.
Thanks, that looks good now.
Reviewed-by: Nicholas Piggin <npiggin@gmail.com>
next prev parent reply other threads:[~2018-08-20 11:20 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-08-19 17:08 [PATCH v8 0/5] powerpc/pseries: Machine check handler improvements Mahesh J Salgaonkar
2018-08-19 17:08 ` [PATCH v8 1/5] powerpc/pseries: Define MCE error event section Mahesh J Salgaonkar
2018-08-19 17:08 ` [PATCH v8 2/5] powerpc/pseries: flush SLB contents on SLB MCE errors Mahesh J Salgaonkar
2018-08-20 10:58 ` Nicholas Piggin
2018-08-19 17:08 ` [PATCH v8 3/5] powerpc/pseries: Display machine check error details Mahesh J Salgaonkar
2018-08-19 17:08 ` [PATCH v8 4/5] powerpc/pseries: Dump the SLB contents on SLB MCE errors Mahesh J Salgaonkar
2018-08-20 11:20 ` Nicholas Piggin [this message]
2018-08-19 17:08 ` [PATCH v8 5/5] powernv/pseries: consolidate code for mce early handling Mahesh J Salgaonkar
2018-08-20 11:34 ` Nicholas Piggin
2018-08-23 8:43 ` Mahesh Jagannath Salgaonkar
2018-08-23 9:02 ` Nicholas Piggin
2018-08-27 10:32 ` Mahesh Jagannath Salgaonkar
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=20180820212015.163c12ff@roar.ozlabs.ibm.com \
--to=npiggin@gmail.com \
--cc=ananth@in.ibm.com \
--cc=aneesh.kumar@linux.ibm.com \
--cc=aneesh.kumar@linux.vnet.ibm.com \
--cc=ldufour@linux.vnet.ibm.com \
--cc=linuxppc-dev@ozlabs.org \
--cc=mahesh@linux.vnet.ibm.com \
--cc=mpe@ellerman.id.au \
--cc=msuchanek@suse.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).