mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
EDAC/mc: Determine mci pointer from the error descriptor
Each struct mci has its own error descriptor. Create a function error_desc_to_mci() to determine the corresponding mci from an error descriptor. This removes @mci from the parameter list of edac_raw_mc_handle_error() as the mci pointer does not need to be passed any longer. [ bp: Massage commit message. ] Signed-off-by: Robert Richter <rrichter@marvell.com> Signed-off-by: Borislav Petkov <bp@suse.de> Reviewed-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org> Acked-by: Aristeu Rozanski <aris@redhat.com> Link: https://lkml.kernel.org/r/20200123090210.26933-5-rrichter@marvell.com
This commit is contained in:
parent
672ef0e568
commit
91b327f672
@ -55,6 +55,11 @@ static LIST_HEAD(mc_devices);
|
||||
*/
|
||||
static const char *edac_mc_owner;
|
||||
|
||||
static struct mem_ctl_info *error_desc_to_mci(struct edac_raw_error_desc *e)
|
||||
{
|
||||
return container_of(e, struct mem_ctl_info, error_desc);
|
||||
}
|
||||
|
||||
int edac_get_report_status(void)
|
||||
{
|
||||
return edac_report;
|
||||
@ -1084,9 +1089,9 @@ static void edac_ue_error(struct mem_ctl_info *mci,
|
||||
edac_inc_ue_error(mci, enable_per_layer_report, pos, error_count);
|
||||
}
|
||||
|
||||
void edac_raw_mc_handle_error(struct mem_ctl_info *mci,
|
||||
struct edac_raw_error_desc *e)
|
||||
void edac_raw_mc_handle_error(struct edac_raw_error_desc *e)
|
||||
{
|
||||
struct mem_ctl_info *mci = error_desc_to_mci(e);
|
||||
char detail[80];
|
||||
int pos[EDAC_MAX_LAYERS] = { e->top_layer, e->mid_layer, e->low_layer };
|
||||
u8 grain_bits;
|
||||
@ -1282,6 +1287,6 @@ void edac_mc_handle_error(const enum hw_event_mc_err_type type,
|
||||
if (p > e->location)
|
||||
*(p - 1) = '\0';
|
||||
|
||||
edac_raw_mc_handle_error(mci, e);
|
||||
edac_raw_mc_handle_error(e);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(edac_mc_handle_error);
|
||||
|
@ -212,15 +212,13 @@ extern int edac_mc_find_csrow_by_page(struct mem_ctl_info *mci,
|
||||
* edac_raw_mc_handle_error() - Reports a memory event to userspace without
|
||||
* doing anything to discover the error location.
|
||||
*
|
||||
* @mci: a struct mem_ctl_info pointer
|
||||
* @e: error description
|
||||
*
|
||||
* This raw function is used internally by edac_mc_handle_error(). It should
|
||||
* only be called directly when the hardware error come directly from BIOS,
|
||||
* like in the case of APEI GHES driver.
|
||||
*/
|
||||
void edac_raw_mc_handle_error(struct mem_ctl_info *mci,
|
||||
struct edac_raw_error_desc *e);
|
||||
void edac_raw_mc_handle_error(struct edac_raw_error_desc *e);
|
||||
|
||||
/**
|
||||
* edac_mc_handle_error() - Reports a memory event to userspace.
|
||||
|
@ -441,7 +441,7 @@ void ghes_edac_report_mem_error(int sev, struct cper_sec_mem_err *mem_err)
|
||||
if (p > pvt->other_detail)
|
||||
*(p - 1) = '\0';
|
||||
|
||||
edac_raw_mc_handle_error(mci, e);
|
||||
edac_raw_mc_handle_error(e);
|
||||
|
||||
unlock:
|
||||
spin_unlock_irqrestore(&ghes_lock, flags);
|
||||
|
Loading…
Reference in New Issue
Block a user