From: Mahesh Jagannath Salgaonkar <mahesh@linux.vnet.ibm.com>
To: Michael Ellerman <mpe@ellerman.id.au>,
linuxppc-dev <linuxppc-dev@ozlabs.org>
Cc: "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>,
Michal Suchanek <msuchanek@suse.com>,
Ananth Narayan <ananth@in.ibm.com>,
Nicholas Piggin <npiggin@gmail.com>,
Laurent Dufour <ldufour@linux.vnet.ibm.com>
Subject: Re: [PATCH v7 4/9] powerpc/pseries: Define MCE error event section.
Date: Fri, 10 Aug 2018 15:59:33 +0530 [thread overview]
Message-ID: <13f8280f-02c1-7b00-0a40-a045bf6ee1f6@linux.vnet.ibm.com> (raw)
In-Reply-To: <87r2j8apj1.fsf@concordia.ellerman.id.au>
On 08/08/2018 08:12 PM, Michael Ellerman wrote:
> Hi Mahesh,
>
> A few nitpicks.
>
> Mahesh J Salgaonkar <mahesh@linux.vnet.ibm.com> writes:
>> From: Mahesh Salgaonkar <mahesh@linux.vnet.ibm.com>
>>
>> On pseries, the machine check error details are part of RTAS extended
>> event log passed under Machine check exception section. This patch adds
>> the definition of rtas MCE event section and related helper
>> functions.
>>
>> Signed-off-by: Mahesh Salgaonkar <mahesh@linux.vnet.ibm.com>
>> ---
>> arch/powerpc/include/asm/rtas.h | 111 +++++++++++++++++++++++++++++++++++++++
>> 1 file changed, 111 insertions(+)
>
> AFIACS none of this ever gets used outside of ras.c, should it should
> just go in there.
Since it was all rtas specific I thought rtas.h is better place. But
yes, I can move this into ras.c
>
>> diff --git a/arch/powerpc/include/asm/rtas.h b/arch/powerpc/include/asm/rtas.h
>> index 71e393c46a49..adc677c5e3a4 100644
>> --- a/arch/powerpc/include/asm/rtas.h
>> +++ b/arch/powerpc/include/asm/rtas.h
>> @@ -326,6 +334,109 @@ struct pseries_hp_errorlog {
>> #define PSERIES_HP_ELOG_ID_DRC_COUNT 3
>> #define PSERIES_HP_ELOG_ID_DRC_IC 4
>>
>> +/* RTAS pseries MCE errorlog section */
>> +#pragma pack(push, 1)
>> +struct pseries_mc_errorlog {
>> + __be32 fru_id;
>> + __be32 proc_id;
>> + uint8_t error_type;
>
> Please use kernel types, so u8.
Will do so.
>
>> + union {
>> + struct {
>> + uint8_t ue_err_type;
>> + /* XXXXXXXX
>> + * X 1: Permanent or Transient UE.
>> + * X 1: Effective address provided.
>> + * X 1: Logical address provided.
>> + * XX 2: Reserved.
>> + * XXX 3: Type of UE error.
>> + */
>
> But which bit is bit 0? And is that the LSB or MSB?
RTAS errorlog data in BE format, the leftmost bit is MSB 0 (1: Permanent
or Transient UE.). I Will update the comment above that properly points
out which one is MSB 0.
>
>
>> + uint8_t reserved_1[6];
>> + __be64 effective_address;
>> + __be64 logical_address;
>> + } ue_error;
>> + struct {
>> + uint8_t soft_err_type;
>> + /* XXXXXXXX
>> + * X 1: Effective address provided.
>> + * XXXXX 5: Reserved.
>> + * XX 2: Type of SLB/ERAT/TLB error.
>> + */
>> + uint8_t reserved_1[6];
>> + __be64 effective_address;
>> + uint8_t reserved_2[8];
>> + } soft_error;
>> + } u;
>> +};
>> +#pragma pack(pop)
>
> Why not __packed ?
Because when used __packed it added 1 byte extra padding between
reserved_1[6] and effective_address. That caused wrong effective address
to be printed on the console. Hence I switched to #pragma pack to force
1 byte alignment for this structure alone.
>
>> +/* RTAS pseries MCE error types */
>> +#define PSERIES_MC_ERROR_TYPE_UE 0x00
>> +#define PSERIES_MC_ERROR_TYPE_SLB 0x01
>> +#define PSERIES_MC_ERROR_TYPE_ERAT 0x02
>> +#define PSERIES_MC_ERROR_TYPE_TLB 0x04
>> +#define PSERIES_MC_ERROR_TYPE_D_CACHE 0x05
>> +#define PSERIES_MC_ERROR_TYPE_I_CACHE 0x07
>
> Once these are in ras.c they can have less unwieldy names, ie. the
> PSERIES at least can be dropped.
ok.
>
>> +/* RTAS pseries MCE error sub types */
>> +#define PSERIES_MC_ERROR_UE_INDETERMINATE 0
>> +#define PSERIES_MC_ERROR_UE_IFETCH 1
>> +#define PSERIES_MC_ERROR_UE_PAGE_TABLE_WALK_IFETCH 2
>> +#define PSERIES_MC_ERROR_UE_LOAD_STORE 3
>> +#define PSERIES_MC_ERROR_UE_PAGE_TABLE_WALK_LOAD_STORE 4
>> +
>> +#define PSERIES_MC_ERROR_SLB_PARITY 0
>> +#define PSERIES_MC_ERROR_SLB_MULTIHIT 1
>> +#define PSERIES_MC_ERROR_SLB_INDETERMINATE 2
>> +
>> +#define PSERIES_MC_ERROR_ERAT_PARITY 1
>> +#define PSERIES_MC_ERROR_ERAT_MULTIHIT 2
>> +#define PSERIES_MC_ERROR_ERAT_INDETERMINATE 3
>> +
>> +#define PSERIES_MC_ERROR_TLB_PARITY 1
>> +#define PSERIES_MC_ERROR_TLB_MULTIHIT 2
>> +#define PSERIES_MC_ERROR_TLB_INDETERMINATE 3
>> +
>> +static inline uint8_t rtas_mc_error_type(const struct pseries_mc_errorlog *mlog)
>> +{
>> + return mlog->error_type;
>> +}
>
> Why not just access it directly?
sure.
>
>> +static inline uint8_t rtas_mc_error_sub_type(
>> + const struct pseries_mc_errorlog *mlog)
>> +{
>> + switch (mlog->error_type) {
>> + case PSERIES_MC_ERROR_TYPE_UE:
>> + return (mlog->u.ue_error.ue_err_type & 0x07);
>> + case PSERIES_MC_ERROR_TYPE_SLB:
>> + case PSERIES_MC_ERROR_TYPE_ERAT:
>> + case PSERIES_MC_ERROR_TYPE_TLB:
>> + return (mlog->u.soft_error.soft_err_type & 0x03);
>> + default:
>> + return 0;
>> + }
>> +}
>> +
>> +static inline uint64_t rtas_mc_get_effective_addr(
>> + const struct pseries_mc_errorlog *mlog)
>> +{
>> + uint64_t addr = 0;
>
> That should be __be64.
Sure will do.
Thanks,
-Mahesh.
next prev parent reply other threads:[~2018-08-10 10:29 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-08-07 14:15 [PATCH v7 0/9] powerpc/pseries: Machine check handler improvements Mahesh J Salgaonkar
2018-08-07 14:16 ` [PATCH v7 1/9] powerpc/pseries: Avoid using the size greater than RTAS_ERROR_LOG_MAX Mahesh J Salgaonkar
2018-08-07 14:16 ` [PATCH v7 2/9] powerpc/pseries: Defer the logging of rtas error to irq work queue Mahesh J Salgaonkar
2018-08-07 14:16 ` [PATCH v7 3/9] powerpc/pseries: Fix endainness while restoring of r3 in MCE handler Mahesh J Salgaonkar
2018-08-13 11:23 ` [v7, " Michael Ellerman
2018-08-07 14:16 ` [PATCH v7 4/9] powerpc/pseries: Define MCE error event section Mahesh J Salgaonkar
2018-08-08 14:42 ` Michael Ellerman
2018-08-10 10:29 ` Mahesh Jagannath Salgaonkar [this message]
2018-08-16 4:14 ` Michael Ellerman
2018-08-16 14:44 ` Segher Boessenkool
2018-08-17 11:22 ` Mahesh Jagannath Salgaonkar
2018-08-07 14:17 ` [PATCH v7 5/9] powerpc/pseries: flush SLB contents on SLB MCE errors Mahesh J Salgaonkar
2018-08-07 16:54 ` Michal Suchánek
2018-08-10 10:30 ` Mahesh Jagannath Salgaonkar
2018-08-08 9:04 ` Nicholas Piggin
2018-08-10 10:30 ` Mahesh Jagannath Salgaonkar
2018-08-07 14:17 ` [PATCH v7 6/9] powerpc/pseries: Display machine check error details Mahesh J Salgaonkar
2018-08-07 14:17 ` [PATCH v7 7/9] powerpc/pseries: Dump the SLB contents on SLB MCE errors Mahesh J Salgaonkar
2018-08-09 1:05 ` Michael Ellerman
2018-08-10 10:32 ` Mahesh Jagannath Salgaonkar
2018-08-10 10:49 ` Mahesh Jagannath Salgaonkar
2018-08-11 4:33 ` Nicholas Piggin
2018-08-13 4:17 ` Mahesh Jagannath Salgaonkar
2018-08-13 14:27 ` Nicholas Piggin
2018-08-14 10:57 ` Mahesh Jagannath Salgaonkar
2018-08-14 12:47 ` Aneesh Kumar K.V
2018-08-07 14:17 ` [PATCH v7 8/9] powerpc/mce: Add sysctl control for recovery action on MCE Mahesh J Salgaonkar
2018-08-08 14:56 ` Michael Ellerman
2018-08-08 15:37 ` Aneesh Kumar K.V
2018-08-08 16:09 ` Michal Suchánek
2018-08-10 11:04 ` Michael Ellerman
2018-08-09 6:34 ` Michael Ellerman
2018-08-09 8:02 ` Nicholas Piggin
2018-08-09 8:09 ` Ananth N Mavinakayanahalli
2018-08-09 8:33 ` Nicholas Piggin
2018-08-09 10:26 ` Michal Suchánek
2018-08-10 7:31 ` Nicholas Piggin
2018-08-09 1:43 ` Nicholas Piggin
2018-08-07 14:18 ` [PATCH v7 9/9] powernv/pseries: consolidate code for mce early handling Mahesh J 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=13f8280f-02c1-7b00-0a40-a045bf6ee1f6@linux.vnet.ibm.com \
--to=mahesh@linux.vnet.ibm.com \
--cc=ananth@in.ibm.com \
--cc=aneesh.kumar@linux.vnet.ibm.com \
--cc=ldufour@linux.vnet.ibm.com \
--cc=linuxppc-dev@ozlabs.org \
--cc=mpe@ellerman.id.au \
--cc=msuchanek@suse.com \
--cc=npiggin@gmail.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).