diff options
author | Zhenzhong Duan <zhenzhong.duan@gmail.com> | 2020-06-10 14:58:46 +0800 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2020-06-15 11:19:52 -0700 |
commit | e9ff6636d3f97a764487999754c0bfee9d2c231e (patch) | |
tree | 013a26534369da7998f60df7492f931a89348904 /drivers/edac | |
parent | 30bf38e4341bd7b44e8036ad62f00e71c2ed8bb7 (diff) | |
download | linux-e9ff6636d3f97a764487999754c0bfee9d2c231e.tar.bz2 |
EDAC/mc: Call edac_inc_ue_error() before panic
By calling edac_inc_ue_error() before panic, we get a correct UE error
count for core dump analysis.
Signed-off-by: Zhenzhong Duan <zhenzhong.duan@gmail.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Link: https://lore.kernel.org/r/20200610065846.3626-2-zhenzhong.duan@gmail.com
Diffstat (limited to 'drivers/edac')
-rw-r--r-- | drivers/edac/edac_mc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/edac/edac_mc.c b/drivers/edac/edac_mc.c index 5813e931f2f0..01ff71f7b645 100644 --- a/drivers/edac/edac_mc.c +++ b/drivers/edac/edac_mc.c @@ -950,6 +950,8 @@ static void edac_ue_error(struct edac_raw_error_desc *e) e->other_detail); } + edac_inc_ue_error(e); + if (edac_mc_get_panic_on_ue()) { panic("UE %s%son %s (%s page:0x%lx offset:0x%lx grain:%ld%s%s)\n", e->msg, @@ -959,8 +961,6 @@ static void edac_ue_error(struct edac_raw_error_desc *e) *e->other_detail ? " - " : "", e->other_detail); } - - edac_inc_ue_error(e); } static void edac_inc_csrow(struct edac_raw_error_desc *e, int row, int chan) |