All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/2] MAINTAINERS: reorg PowerPC RAS code for better maintainability
@ 2026-08-19 19:37 Shivang Upadhyay
  2026-08-19 19:37 ` [PATCH v3 1/2] MAINTAINERS: add dedicated PowerPC RAS section Shivang Upadhyay
  2026-08-19 19:37 ` [PATCH v3 2/2] MAINTAINERS: add self as reviewer for PowerPC RAS Shivang Upadhyay
  0 siblings, 2 replies; 4+ messages in thread
From: Shivang Upadhyay @ 2026-08-19 19:37 UTC (permalink / raw)
  To: qemu-devel, qemu-ppc
  Cc: shivangu, adityag, harshpb, hbathini, mahesh, npiggin, rathc,
	sourabhjain, vaibhav

Combining Fadump and MPIPL entries under PowerPC RAS section. Additionally
adding myself as a reviewer, to help share the review workload.

--
ChangeLog:

v3:
  Adding spapr_rtas.c file. As rtas_ras.c file is no longer there.
  
v2: https://lore.kernel.org/all/20260818171541.903431-1-shivangu@linux.ibm.com/
  Dropping the rtas_ras.c file refactor, as suggested by vaibhav.

v1: https://lore.kernel.org/all/20260714164745.573141-1-shivangu@linux.ibm.com/

--
Shivang Upadhyay (2):
  MAINTAINERS: add dedicated PowerPC RAS section
  MAINTAINERS: add self as reviewer for PowerPC RAS

 MAINTAINERS | 33 ++++++++++++++++-----------------
 1 file changed, 16 insertions(+), 17 deletions(-)

-- 
2.54.0



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH v3 1/2] MAINTAINERS: add dedicated PowerPC RAS section
  2026-08-19 19:37 [PATCH v3 0/2] MAINTAINERS: reorg PowerPC RAS code for better maintainability Shivang Upadhyay
@ 2026-08-19 19:37 ` Shivang Upadhyay
  2026-08-21 13:32   ` Hari Bathini
  2026-08-19 19:37 ` [PATCH v3 2/2] MAINTAINERS: add self as reviewer for PowerPC RAS Shivang Upadhyay
  1 sibling, 1 reply; 4+ messages in thread
From: Shivang Upadhyay @ 2026-08-19 19:37 UTC (permalink / raw)
  To: qemu-devel, qemu-ppc
  Cc: shivangu, adityag, harshpb, hbathini, mahesh, npiggin, rathc,
	sourabhjain, vaibhav

Introduce a new "PowerPC RAS (Reliability, Availability and
Serviceability)" entry in the PowerPC Machines block, replacing the
existing Fadump/MPIPL sections. Retaining the maintainer and
reviewer entries from Fadump/MPIPL sections for this broader umbrella.

Currently most of RAS related code sits in spapr_rtas.c, So Adding
it to PowerPC RAS section. Additionally adding spapr_events.c, as it
implements RTAS error logging infrastructure and spapr_pci_vfio.c, since
its all EEH related code.

Acked-by: Sourabh Jain <sourabhjain@linux.ibm.com>
Acked-by: Aditya Gupta <adityag@linux.ibm.com>
Signed-off-by: Shivang Upadhyay <shivangu@linux.ibm.com>
---
 MAINTAINERS | 32 +++++++++++++++-----------------
 1 file changed, 15 insertions(+), 17 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index b51f5c3e60..a2a80c789c 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1762,6 +1762,21 @@ F: include/hw/ppc/vof*
 F: pc-bios/vof/*
 F: pc-bios/vof*
 
+PowerPC RAS (Reliability, Availability and Serviceability)
+M: Aditya Gupta <adityag@linux.ibm.com>
+R: Sourabh Jain <sourabhjain@linux.ibm.com>
+R: Hari Bathini <hbathini@linux.ibm.com>
+L: qemu-ppc@nongnu.org
+S: Maintained
+F: hw/ppc/spapr_events.c
+F: hw/ppc/spapr_fadump.c
+F: hw/ppc/spapr_pci_vfio.c
+F: hw/ppc/spapr_rtas.c
+F: hw/ppc/pnv_mpipl.c
+F: include/hw/ppc/spapr_fadump.h
+F: include/hw/ppc/pnv_mpipl.h
+F: tests/functional/ppc64/test_fadump.py
+
 RISC-V Machines
 ---------------
 OpenTitan
@@ -3386,23 +3401,6 @@ F: scripts/coccinelle/remove_local_err.cocci
 F: scripts/coccinelle/use-error_fatal.cocci
 F: scripts/coccinelle/errp-guard.cocci
 
-Firmware Assisted Dump (fadump) for sPAPR (pseries)
-M: Aditya Gupta <adityag@linux.ibm.com>
-R: Sourabh Jain <sourabhjain@linux.ibm.com>
-S: Maintained
-F: include/hw/ppc/spapr_fadump.h
-F: hw/ppc/spapr_fadump.c
-F: tests/functional/ppc64/test_fadump.py
-
-Memory-Preserving Initial Program Load (MPIPL) for PowerNV
-M: Aditya Gupta <adityag@linux.ibm.com>
-R: Hari Bathini <hbathini@linux.ibm.com>
-R: Sourabh <sourabhjain@linux.ibm.com>
-S: Maintained
-F: include/hw/ppc/pnv_mpipl.h
-F: hw/ppc/pnv_mpipl.c
-F: tests/functional/ppc64/test_fadump.py
-
 GDB stub
 M: Alex Bennée <alex.bennee@linaro.org>
 R: Philippe Mathieu-Daudé <philmd@mailo.com>
-- 
2.54.0



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH v3 2/2] MAINTAINERS: add self as reviewer for PowerPC RAS
  2026-08-19 19:37 [PATCH v3 0/2] MAINTAINERS: reorg PowerPC RAS code for better maintainability Shivang Upadhyay
  2026-08-19 19:37 ` [PATCH v3 1/2] MAINTAINERS: add dedicated PowerPC RAS section Shivang Upadhyay
@ 2026-08-19 19:37 ` Shivang Upadhyay
  1 sibling, 0 replies; 4+ messages in thread
From: Shivang Upadhyay @ 2026-08-19 19:37 UTC (permalink / raw)
  To: qemu-devel, qemu-ppc
  Cc: shivangu, adityag, harshpb, hbathini, mahesh, npiggin, rathc,
	sourabhjain, vaibhav

I have been contributing to Fadump, MPIPL as well as PowerNV for quite
some time, and my daily work responsibilities includes taking care of
PowerPC RAS features. I, therefore would like to step up as a reviewer
to get notified of incoming changes in this area and help reviewing
them.

Acked-by: Aditya Gupta <adityag@linux.ibm.com>
Signed-off-by: Shivang Upadhyay <shivangu@linux.ibm.com>
---
 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index a2a80c789c..b06dd5c486 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1766,6 +1766,7 @@ PowerPC RAS (Reliability, Availability and Serviceability)
 M: Aditya Gupta <adityag@linux.ibm.com>
 R: Sourabh Jain <sourabhjain@linux.ibm.com>
 R: Hari Bathini <hbathini@linux.ibm.com>
+R: Shivang Upadhyay <shivangu@linux.ibm.com>
 L: qemu-ppc@nongnu.org
 S: Maintained
 F: hw/ppc/spapr_events.c
-- 
2.54.0



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v3 1/2] MAINTAINERS: add dedicated PowerPC RAS section
  2026-08-19 19:37 ` [PATCH v3 1/2] MAINTAINERS: add dedicated PowerPC RAS section Shivang Upadhyay
@ 2026-08-21 13:32   ` Hari Bathini
  0 siblings, 0 replies; 4+ messages in thread
From: Hari Bathini @ 2026-08-21 13:32 UTC (permalink / raw)
  To: Shivang Upadhyay, qemu-devel, qemu-ppc
  Cc: adityag, harshpb, mahesh, npiggin, rathc, sourabhjain, vaibhav



On 20/08/26 1:07 am, Shivang Upadhyay wrote:
> Introduce a new "PowerPC RAS (Reliability, Availability and
> Serviceability)" entry in the PowerPC Machines block, replacing the
> existing Fadump/MPIPL sections. Retaining the maintainer and
> reviewer entries from Fadump/MPIPL sections for this broader umbrella.
> 
> Currently most of RAS related code sits in spapr_rtas.c, So Adding
> it to PowerPC RAS section. Additionally adding spapr_events.c, as it
> implements RTAS error logging infrastructure and spapr_pci_vfio.c, since
> its all EEH related code.
> 
> Acked-by: Sourabh Jain <sourabhjain@linux.ibm.com>
> Acked-by: Aditya Gupta <adityag@linux.ibm.com>
> Signed-off-by: Shivang Upadhyay <shivangu@linux.ibm.com>
> ---
>   MAINTAINERS | 32 +++++++++++++++-----------------
>   1 file changed, 15 insertions(+), 17 deletions(-)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index b51f5c3e60..a2a80c789c 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -1762,6 +1762,21 @@ F: include/hw/ppc/vof*
>   F: pc-bios/vof/*
>   F: pc-bios/vof*
>   

> +PowerPC RAS (Reliability, Availability and Serviceability)

With the scope now expanded to include additional files, I’m not sure
I’ll be able to review everything given my current workload. However,
I should be able to review the FADump-specific patches.

With that said:

Acked-by: Hari Bathini <hbathini@linux.ibm.com>

> +M: Aditya Gupta <adityag@linux.ibm.com>
> +R: Sourabh Jain <sourabhjain@linux.ibm.com>
> +R: Hari Bathini <hbathini@linux.ibm.com>

> +L: qemu-ppc@nongnu.org
> +S: Maintained
> +F: hw/ppc/spapr_events.c
> +F: hw/ppc/spapr_fadump.c
> +F: hw/ppc/spapr_pci_vfio.c
> +F: hw/ppc/spapr_rtas.c
> +F: hw/ppc/pnv_mpipl.c
> +F: include/hw/ppc/spapr_fadump.h
> +F: include/hw/ppc/pnv_mpipl.h
> +F: tests/functional/ppc64/test_fadump.py
> +
>   RISC-V Machines
>   ---------------
>   OpenTitan
> @@ -3386,23 +3401,6 @@ F: scripts/coccinelle/remove_local_err.cocci
>   F: scripts/coccinelle/use-error_fatal.cocci
>   F: scripts/coccinelle/errp-guard.cocci
>   
> -Firmware Assisted Dump (fadump) for sPAPR (pseries)
> -M: Aditya Gupta <adityag@linux.ibm.com>
> -R: Sourabh Jain <sourabhjain@linux.ibm.com>
> -S: Maintained
> -F: include/hw/ppc/spapr_fadump.h
> -F: hw/ppc/spapr_fadump.c
> -F: tests/functional/ppc64/test_fadump.py
> -
> -Memory-Preserving Initial Program Load (MPIPL) for PowerNV
> -M: Aditya Gupta <adityag@linux.ibm.com>
> -R: Hari Bathini <hbathini@linux.ibm.com>
> -R: Sourabh <sourabhjain@linux.ibm.com>
> -S: Maintained
> -F: include/hw/ppc/pnv_mpipl.h
> -F: hw/ppc/pnv_mpipl.c
> -F: tests/functional/ppc64/test_fadump.py
> -
>   GDB stub
>   M: Alex Bennée <alex.bennee@linaro.org>
>   R: Philippe Mathieu-Daudé <philmd@mailo.com>



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-08-21 13:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-19 19:37 [PATCH v3 0/2] MAINTAINERS: reorg PowerPC RAS code for better maintainability Shivang Upadhyay
2026-08-19 19:37 ` [PATCH v3 1/2] MAINTAINERS: add dedicated PowerPC RAS section Shivang Upadhyay
2026-08-21 13:32   ` Hari Bathini
2026-08-19 19:37 ` [PATCH v3 2/2] MAINTAINERS: add self as reviewer for PowerPC RAS Shivang Upadhyay

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.