mbox series

[v3,0/7] rasdaemon: Add support for memory_failure events and vendor errors

Message ID 20210308165732.273-1-shiju.jose@huawei.com (mailing list archive)
Headers show
Series rasdaemon: Add support for memory_failure events and vendor errors | expand

Message

Shiju Jose March 8, 2021, 4:57 p.m. UTC
1. Add support for the memory_failure trace event in the rasdaemon.
2. Add improvements & support for the vendor specific errors into the
util/ras-mc-ctl.in script.

Changes:
v2 -> v3
Re-based and removed fix patch for the ras-mc-ctl exception
as another fix patch merged recently.

v1 -> v2
1. Fix the feedback by Mauro for the fix patch for the exception
   in the ras-mc-ctl.in.
2. Rebased and grouped the previous v1 rasdaemon patches posted.

Shiju Jose (7):
  rasdaemon: add support for memory_failure events
  rasdaemon: ras-mc-ctl: Modify ARM processor error summary log
  rasdaemon: ras-mc-ctl: Add memory failure events
  rasdaemon: ras-mc-ctl: Add support for the vendor-specific errors
  rasdaemon: ras-mc-ctl: Add support for HiSilicon Kunpeng920 errors
  rasdaemon: ras-mc-ctl: Add support for HiSilicon Kunpeng9xx common
    errors
  rasdaemon: Modify confiure.ac for Hisilicon Kunpeng errors

 .travis.yml                  |   2 +-
 Makefile.am                  |   7 +-
 configure.ac                 |  13 +-
 ras-events.c                 |  15 ++
 ras-events.h                 |   1 +
 ras-memory-failure-handler.c | 179 +++++++++++++++++++++
 ras-memory-failure-handler.h |  25 +++
 ras-record.c                 |  70 ++++++++
 ras-record.h                 |  13 ++
 ras-report.c                 |  68 ++++++++
 ras-report.h                 |   2 +
 util/ras-mc-ctl.in           | 303 ++++++++++++++++++++++++++++++++++-
 12 files changed, 688 insertions(+), 10 deletions(-)
 create mode 100644 ras-memory-failure-handler.c
 create mode 100644 ras-memory-failure-handler.h

Comments

Shiju Jose May 13, 2021, 8:55 a.m. UTC | #1
Hi Mauro,

Ping...
Any comments on this series?

Thanks,
Shiju

>-----Original Message-----
>From: Shiju Jose
>Sent: 08 March 2021 16:57
>To: linux-edac@vger.kernel.org; mchehab+huawei@kernel.org
>Cc: Linuxarm <linuxarm@huawei.com>; tanxiaofei
><tanxiaofei@huawei.com>; Shiju Jose <shiju.jose@huawei.com>
>Subject: [PATCH v3 0/7] rasdaemon: Add support for memory_failure events
>and vendor errors
>
>1. Add support for the memory_failure trace event in the rasdaemon.
>2. Add improvements & support for the vendor specific errors into the
>util/ras-mc-ctl.in script.
>
>Changes:
>v2 -> v3
>Re-based and removed fix patch for the ras-mc-ctl exception as another fix
>patch merged recently.
>
>v1 -> v2
>1. Fix the feedback by Mauro for the fix patch for the exception
>   in the ras-mc-ctl.in.
>2. Rebased and grouped the previous v1 rasdaemon patches posted.
>
>Shiju Jose (7):
>  rasdaemon: add support for memory_failure events
>  rasdaemon: ras-mc-ctl: Modify ARM processor error summary log
>  rasdaemon: ras-mc-ctl: Add memory failure events
>  rasdaemon: ras-mc-ctl: Add support for the vendor-specific errors
>  rasdaemon: ras-mc-ctl: Add support for HiSilicon Kunpeng920 errors
>  rasdaemon: ras-mc-ctl: Add support for HiSilicon Kunpeng9xx common
>    errors
>  rasdaemon: Modify confiure.ac for Hisilicon Kunpeng errors
>
> .travis.yml                  |   2 +-
> Makefile.am                  |   7 +-
> configure.ac                 |  13 +-
> ras-events.c                 |  15 ++
> ras-events.h                 |   1 +
> ras-memory-failure-handler.c | 179 +++++++++++++++++++++  ras-memory-
>failure-handler.h |  25 +++
> ras-record.c                 |  70 ++++++++
> ras-record.h                 |  13 ++
> ras-report.c                 |  68 ++++++++
> ras-report.h                 |   2 +
> util/ras-mc-ctl.in           | 303 ++++++++++++++++++++++++++++++++++-
> 12 files changed, 688 insertions(+), 10 deletions(-)  create mode 100644 ras-
>memory-failure-handler.c  create mode 100644 ras-memory-failure-handler.h
>
>--
>2.17.1
Mauro Carvalho Chehab May 26, 2021, 7:21 a.m. UTC | #2
Em Thu, 13 May 2021 08:55:02 +0000
Shiju Jose <shiju.jose@huawei.com> escreveu:

> Hi Mauro,
> 
> Ping...
> Any comments on this series?

Applied, thanks!

Next time, it would be better to use github[1], as it is easier for me to
track what's pending to review ;-)

[1] https://github.com/mchehab/rasdaemon

Regards,
Mauro

> 
> Thanks,
> Shiju
> 
> >-----Original Message-----
> >From: Shiju Jose
> >Sent: 08 March 2021 16:57
> >To: linux-edac@vger.kernel.org; mchehab+huawei@kernel.org
> >Cc: Linuxarm <linuxarm@huawei.com>; tanxiaofei
> ><tanxiaofei@huawei.com>; Shiju Jose <shiju.jose@huawei.com>
> >Subject: [PATCH v3 0/7] rasdaemon: Add support for memory_failure events
> >and vendor errors
> >
> >1. Add support for the memory_failure trace event in the rasdaemon.
> >2. Add improvements & support for the vendor specific errors into the
> >util/ras-mc-ctl.in script.
> >
> >Changes:
> >v2 -> v3
> >Re-based and removed fix patch for the ras-mc-ctl exception as another fix
> >patch merged recently.
> >
> >v1 -> v2
> >1. Fix the feedback by Mauro for the fix patch for the exception
> >   in the ras-mc-ctl.in.
> >2. Rebased and grouped the previous v1 rasdaemon patches posted.
> >
> >Shiju Jose (7):
> >  rasdaemon: add support for memory_failure events
> >  rasdaemon: ras-mc-ctl: Modify ARM processor error summary log
> >  rasdaemon: ras-mc-ctl: Add memory failure events
> >  rasdaemon: ras-mc-ctl: Add support for the vendor-specific errors
> >  rasdaemon: ras-mc-ctl: Add support for HiSilicon Kunpeng920 errors
> >  rasdaemon: ras-mc-ctl: Add support for HiSilicon Kunpeng9xx common
> >    errors
> >  rasdaemon: Modify confiure.ac for Hisilicon Kunpeng errors
> >
> > .travis.yml                  |   2 +-
> > Makefile.am                  |   7 +-
> > configure.ac                 |  13 +-
> > ras-events.c                 |  15 ++
> > ras-events.h                 |   1 +
> > ras-memory-failure-handler.c | 179 +++++++++++++++++++++  ras-memory-
> >failure-handler.h |  25 +++
> > ras-record.c                 |  70 ++++++++
> > ras-record.h                 |  13 ++
> > ras-report.c                 |  68 ++++++++
> > ras-report.h                 |   2 +
> > util/ras-mc-ctl.in           | 303 ++++++++++++++++++++++++++++++++++-
> > 12 files changed, 688 insertions(+), 10 deletions(-)  create mode 100644 ras-
> >memory-failure-handler.c  create mode 100644 ras-memory-failure-handler.h
> >
> >--
> >2.17.1  
> 



Thanks,
Mauro