All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/2] s390/pci: Fix missing pci_dev_put() in zpci_report_status()
@ 2026-08-19  9:58 Niklas Schnelle
  2026-08-19  9:58 ` [PATCH v2 1/2] " Niklas Schnelle
  2026-08-19  9:58 ` [PATCH v2 2/2] s390/pci: Extend device lock to cover zpci_report_status() Niklas Schnelle
  0 siblings, 2 replies; 13+ messages in thread
From: Niklas Schnelle @ 2026-08-19  9:58 UTC (permalink / raw)
  To: Gerd Bayer, Matthew Rosato, Farhan Ali, Benjamin Block,
	Julian Ruess
  Cc: Heiko Carstens, Vasily Gorbik, Alexander Gordeev, Sven Schnelle,
	Ramesh Errabolu, Tobias Schumacher, Halil Pasic,
	Peter Oberparleiter, Gerald Schaefer, Christian Borntraeger,
	Niklas Schnelle, linux-s390, linux-kernel

Hi All,

This series fixes two issues found in zpci_report_status() by
LLM review. A missing pci_dev_put() which could prevent proper removal
on hot unplug and a too short device lock critical section.

Thanks,
Niklas

Signed-off-by: Niklas Schnelle <schnelle@linux.ibm.com>
---
Changes in v2:
- Added a second fix to address Sashiko's finding of having
  to hold the device lock during the call to zpci_report_status()
- Add R-bs from Matthew and Farhan
- Link to v1: https://lore.kernel.org/r/20260818-fix_zpci_report_status_pdev_leak-v1-1-576520f4d068@linux.ibm.com

---
Niklas Schnelle (2):
      s390/pci: Fix missing pci_dev_put() in zpci_report_status()
      s390/pci: Extend device lock to cover zpci_report_status()

 arch/s390/pci/pci_event.c  | 2 +-
 arch/s390/pci/pci_report.c | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)
---
base-commit: 8d3ae59288f1e7d58d76558a6ee96d533bc5019f
change-id: 20260817-fix_zpci_report_status_pdev_leak-1b101c1fe021

Best regards,
-- 
Niklas Schnelle


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

* [PATCH v2 1/2] s390/pci: Fix missing pci_dev_put() in zpci_report_status()
  2026-08-19  9:58 [PATCH v2 0/2] s390/pci: Fix missing pci_dev_put() in zpci_report_status() Niklas Schnelle
@ 2026-08-19  9:58 ` Niklas Schnelle
  2026-08-19 10:08   ` sashiko-bot
  2026-08-21 12:48   ` Benjamin Block
  2026-08-19  9:58 ` [PATCH v2 2/2] s390/pci: Extend device lock to cover zpci_report_status() Niklas Schnelle
  1 sibling, 2 replies; 13+ messages in thread
From: Niklas Schnelle @ 2026-08-19  9:58 UTC (permalink / raw)
  To: Gerd Bayer, Matthew Rosato, Farhan Ali, Benjamin Block,
	Julian Ruess
  Cc: Heiko Carstens, Vasily Gorbik, Alexander Gordeev, Sven Schnelle,
	Ramesh Errabolu, Tobias Schumacher, Halil Pasic,
	Peter Oberparleiter, Gerald Schaefer, Christian Borntraeger,
	Niklas Schnelle, linux-s390, linux-kernel

In zpci_report_status() a reference to the struct pci_dev associated
with the struct zpci_dev being reported about is acquired using
pci_get_slot(). This reference needs to be dropped with pci_dev_put()
but this call is missing thus leaking the reference. On subsequent hot
unplug this will cause the struct pci_dev to not be released leaking
memory and potentially prevent reattach.

Reviewed-by: Matthew Rosato <mjrosato@linux.ibm.com>
Cc: stable@vger.kernel.org
Fixes: 4ec6054e7321 ("s390/pci: Report PCI error recovery results via SCLP")
Reviewed-by: Farhan Ali <alifm@linux.ibm.com>
Signed-off-by: Niklas Schnelle <schnelle@linux.ibm.com>
---
 arch/s390/pci/pci_report.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/s390/pci/pci_report.c b/arch/s390/pci/pci_report.c
index 7030f7052926..76b8afc146fe 100644
--- a/arch/s390/pci/pci_report.c
+++ b/arch/s390/pci/pci_report.c
@@ -151,6 +151,7 @@ int zpci_report_status(struct zpci_dev *zdev, const char *operation, const char
 	else
 		pr_info("Reported PCI device status\n");
 
+	pci_dev_put(pdev);
 	free_page((unsigned long)report);
 
 	return ret;

-- 
2.53.0


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

* [PATCH v2 2/2] s390/pci: Extend device lock to cover zpci_report_status()
  2026-08-19  9:58 [PATCH v2 0/2] s390/pci: Fix missing pci_dev_put() in zpci_report_status() Niklas Schnelle
  2026-08-19  9:58 ` [PATCH v2 1/2] " Niklas Schnelle
@ 2026-08-19  9:58 ` Niklas Schnelle
  2026-08-19 10:19   ` sashiko-bot
                     ` (2 more replies)
  1 sibling, 3 replies; 13+ messages in thread
From: Niklas Schnelle @ 2026-08-19  9:58 UTC (permalink / raw)
  To: Gerd Bayer, Matthew Rosato, Farhan Ali, Benjamin Block,
	Julian Ruess
  Cc: Heiko Carstens, Vasily Gorbik, Alexander Gordeev, Sven Schnelle,
	Ramesh Errabolu, Tobias Schumacher, Halil Pasic,
	Peter Oberparleiter, Gerald Schaefer, Christian Borntraeger,
	Niklas Schnelle, linux-s390, linux-kernel

As zpci_report_status() accesses the device's driver the device lock
needs to be held. Extend the critical section to cover the
zpci_report_status() call.

Cc: stable@vger.kernel.org
Fixes: 4ec6054e7321 ("s390/pci: Report PCI error recovery results via SCLP")
Signed-off-by: Niklas Schnelle <schnelle@linux.ibm.com>
---
 arch/s390/pci/pci_event.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/s390/pci/pci_event.c b/arch/s390/pci/pci_event.c
index 839bd91c056e..48c150d6ba81 100644
--- a/arch/s390/pci/pci_event.c
+++ b/arch/s390/pci/pci_event.c
@@ -256,8 +256,8 @@ static pci_ers_result_t zpci_event_attempt_error_recovery(struct pci_dev *pdev)
 		driver->err_handler->resume(pdev);
 	pci_uevent_ers(pdev, PCI_ERS_RESULT_RECOVERED);
 out_unlock:
-	device_unlock(&pdev->dev);
 	zpci_report_status(zdev, "recovery", status_str);
+	device_unlock(&pdev->dev);
 
 	return ers_res;
 }

-- 
2.53.0


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

* Re: [PATCH v2 1/2] s390/pci: Fix missing pci_dev_put() in zpci_report_status()
  2026-08-19  9:58 ` [PATCH v2 1/2] " Niklas Schnelle
@ 2026-08-19 10:08   ` sashiko-bot
  2026-08-20  7:50     ` Niklas Schnelle
  2026-08-21 12:48   ` Benjamin Block
  1 sibling, 1 reply; 13+ messages in thread
From: sashiko-bot @ 2026-08-19 10:08 UTC (permalink / raw)
  To: Niklas Schnelle
  Cc: linux-s390, Vasily Gorbik, Heiko Carstens, Christian Borntraeger,
	Alexander Gordeev

Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:

Pre-existing issues:
- [High] Lockless TOCTOU and Use-After-Free when accessing `pdev->dev.driver` and `driver->name`.
--

--- Patch [1]: [PATCH v2 1/2] s390/pci: Fix missing pci_dev_put() in zpci_report_status() ---
commit 81196a1544a6f30ec9381d6aeaf28e9992efad5f
Author: Niklas Schnelle <schnelle@linux.ibm.com>

    s390/pci: Fix missing pci_dev_put() in zpci_report_status()
    
    In zpci_report_status() a reference to the struct pci_dev associated
    with the struct zpci_dev being reported about is acquired using
    pci_get_slot(). This reference needs to be dropped with pci_dev_put()
    but this call is missing thus leaking the reference. On subsequent hot
    unplug this will cause the struct pci_dev to not be released leaking
    memory and potentially prevent reattach.

> diff --git a/arch/s390/pci/pci_report.c b/arch/s390/pci/pci_report.c
> index 7030f7052926a..76b8afc146fea 100644
> --- a/arch/s390/pci/pci_report.c
> +++ b/arch/s390/pci/pci_report.c
> @@ -151,6 +151,7 @@ int zpci_report_status(struct zpci_dev *zdev, const char *operation, const char
>  	else
>  		pr_info("Reported PCI device status\n");
>  
> +	pci_dev_put(pdev);

[Severity: High]
This isn't a bug introduced by this patch, but while we are working with
pdev in zpci_report_status(), is it safe that earlier in this function
we access pdev->dev.driver locklessly?

arch/s390/pci/pci_report.c:zpci_report_status() {
...
	if (pdev)
		driver = to_pci_driver(pdev->dev.driver);
...
	buf += scnprintf(buf, end - buf, "driver: %s\n", (driver) ? driver->name : "n/a");
...
}

If a concurrent driver unbind (e.g., via sysfs) clears pdev->dev.driver while
zpci_report_status() is executing, the to_pci_driver() macro could read
it during a race. The to_pci_driver() macro evaluates its argument twice.
If pdev->dev.driver becomes NULL between these evaluations, it subtracts
the offset from NULL, yielding a large negative pointer.

Can this dereference crash the kernel if driver is a negative pointer from
the race?

Additionally, even if the macro evaluates safely, accessing driver->name
without holding the device lock or preventing module unload could result
in a use-after-free if the driver module is concurrently unloaded.

Could this be triggered by an administrator unbinding a PCI driver
concurrently with a PCI error recovery event?

>  	free_page((unsigned long)report);
>  
>  	return ret;

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260819-fix_zpci_report_status_pdev_leak-v2-0-da0c4aa7c0ca@linux.ibm.com?part=1

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

* Re: [PATCH v2 2/2] s390/pci: Extend device lock to cover zpci_report_status()
  2026-08-19  9:58 ` [PATCH v2 2/2] s390/pci: Extend device lock to cover zpci_report_status() Niklas Schnelle
@ 2026-08-19 10:19   ` sashiko-bot
  2026-08-19 14:08   ` Matthew Rosato
  2026-08-19 21:30   ` Farhan Ali
  2 siblings, 0 replies; 13+ messages in thread
From: sashiko-bot @ 2026-08-19 10:19 UTC (permalink / raw)
  To: Niklas Schnelle
  Cc: Heiko Carstens, Vasily Gorbik, linux-s390, Alexander Gordeev,
	Christian Borntraeger

> As zpci_report_status() accesses the device's driver the device lock
> needs to be held. Extend the critical section to cover the
> zpci_report_status() call.
> 
> Cc: stable@vger.kernel.org
> Fixes: 4ec6054e7321 ("s390/pci: Report PCI error recovery results via SCLP")
> Signed-off-by: Niklas Schnelle <schnelle@linux.ibm.com>

Sashiko has reviewed this patch and found no issues. It looks great!

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260819-fix_zpci_report_status_pdev_leak-v2-0-da0c4aa7c0ca@linux.ibm.com?part=2


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

* Re: [PATCH v2 2/2] s390/pci: Extend device lock to cover zpci_report_status()
  2026-08-19  9:58 ` [PATCH v2 2/2] s390/pci: Extend device lock to cover zpci_report_status() Niklas Schnelle
  2026-08-19 10:19   ` sashiko-bot
@ 2026-08-19 14:08   ` Matthew Rosato
  2026-08-19 21:30   ` Farhan Ali
  2 siblings, 0 replies; 13+ messages in thread
From: Matthew Rosato @ 2026-08-19 14:08 UTC (permalink / raw)
  To: Niklas Schnelle, Gerd Bayer, Farhan Ali, Benjamin Block,
	Julian Ruess
  Cc: Heiko Carstens, Vasily Gorbik, Alexander Gordeev, Sven Schnelle,
	Ramesh Errabolu, Tobias Schumacher, Halil Pasic,
	Peter Oberparleiter, Gerald Schaefer, Christian Borntraeger,
	linux-s390, linux-kernel

On 8/19/26 5:58 AM, Niklas Schnelle wrote:
> As zpci_report_status() accesses the device's driver the device lock
> needs to be held. Extend the critical section to cover the
> zpci_report_status() call.
> 
> Cc: stable@vger.kernel.org
> Fixes: 4ec6054e7321 ("s390/pci: Report PCI error recovery results via SCLP")
> Signed-off-by: Niklas Schnelle <schnelle@linux.ibm.com>

Reviewed-by: Matthew Rosato <mjrosato@linux.ibm.com>



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

* Re: [PATCH v2 2/2] s390/pci: Extend device lock to cover zpci_report_status()
  2026-08-19  9:58 ` [PATCH v2 2/2] s390/pci: Extend device lock to cover zpci_report_status() Niklas Schnelle
  2026-08-19 10:19   ` sashiko-bot
  2026-08-19 14:08   ` Matthew Rosato
@ 2026-08-19 21:30   ` Farhan Ali
  2026-08-21 12:50     ` Niklas Schnelle
  2026-08-21 12:59     ` Benjamin Block
  2 siblings, 2 replies; 13+ messages in thread
From: Farhan Ali @ 2026-08-19 21:30 UTC (permalink / raw)
  To: Niklas Schnelle, Gerd Bayer, Matthew Rosato, Benjamin Block,
	Julian Ruess
  Cc: Heiko Carstens, Vasily Gorbik, Alexander Gordeev, Sven Schnelle,
	Ramesh Errabolu, Tobias Schumacher, Halil Pasic,
	Peter Oberparleiter, Gerald Schaefer, Christian Borntraeger,
	linux-s390, linux-kernel


On 8/19/2026 2:58 AM, Niklas Schnelle wrote:
> As zpci_report_status() accesses the device's driver the device lock
> needs to be held. Extend the critical section to cover the
> zpci_report_status() call.
>
> Cc: stable@vger.kernel.org
> Fixes: 4ec6054e7321 ("s390/pci: Report PCI error recovery results via SCLP")
> Signed-off-by: Niklas Schnelle <schnelle@linux.ibm.com>
> ---
>   arch/s390/pci/pci_event.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/s390/pci/pci_event.c b/arch/s390/pci/pci_event.c
> index 839bd91c056e..48c150d6ba81 100644
> --- a/arch/s390/pci/pci_event.c
> +++ b/arch/s390/pci/pci_event.c
> @@ -256,8 +256,8 @@ static pci_ers_result_t zpci_event_attempt_error_recovery(struct pci_dev *pdev)
>   		driver->err_handler->resume(pdev);
>   	pci_uevent_ers(pdev, PCI_ERS_RESULT_RECOVERED);
>   out_unlock:
> -	device_unlock(&pdev->dev);
>   	zpci_report_status(zdev, "recovery", status_str);
> +	device_unlock(&pdev->dev);
>   
>   	return ers_res;
>   }

AFAICT this change is correct, but should we also add a lockdep_assert 
in zpci_report_status()? Since this is the only placed its called, it 
maybe fine as is. I just fear that we could miss on getting the lock if 
we were to re-use zpci_report_status().

Either way
Reviewed-by: Farhan Ali<alifm@linux.ibm.com>

Thanks

Farhan



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

* Re: [PATCH v2 1/2] s390/pci: Fix missing pci_dev_put() in zpci_report_status()
  2026-08-19 10:08   ` sashiko-bot
@ 2026-08-20  7:50     ` Niklas Schnelle
  0 siblings, 0 replies; 13+ messages in thread
From: Niklas Schnelle @ 2026-08-20  7:50 UTC (permalink / raw)
  To: sashiko-reviews
  Cc: linux-s390, Vasily Gorbik, Heiko Carstens, Christian Borntraeger,
	Alexander Gordeev

On Wed, 2026-08-19 at 10:08 +0000, sashiko-bot@kernel.org wrote:
> Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
> 
> Pre-existing issues:
> - [High] Lockless TOCTOU and Use-After-Free when accessing `pdev->dev.driver` and `driver->name`.
> --

This is exactly the issue fixed by the second patch.

Thanks,
Niklas
> 

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

* Re: [PATCH v2 1/2] s390/pci: Fix missing pci_dev_put() in zpci_report_status()
  2026-08-19  9:58 ` [PATCH v2 1/2] " Niklas Schnelle
  2026-08-19 10:08   ` sashiko-bot
@ 2026-08-21 12:48   ` Benjamin Block
  1 sibling, 0 replies; 13+ messages in thread
From: Benjamin Block @ 2026-08-21 12:48 UTC (permalink / raw)
  To: Niklas Schnelle
  Cc: Gerd Bayer, Matthew Rosato, Farhan Ali, Julian Ruess,
	Heiko Carstens, Vasily Gorbik, Alexander Gordeev, Sven Schnelle,
	Ramesh Errabolu, Tobias Schumacher, Halil Pasic,
	Peter Oberparleiter, Gerald Schaefer, Christian Borntraeger,
	linux-s390, linux-kernel

On Wed, Aug 19, 2026 at 11:58:30AM +0200, Niklas Schnelle wrote:
> In zpci_report_status() a reference to the struct pci_dev associated
> with the struct zpci_dev being reported about is acquired using
> pci_get_slot(). This reference needs to be dropped with pci_dev_put()
> but this call is missing thus leaking the reference. On subsequent hot
> unplug this will cause the struct pci_dev to not be released leaking
> memory and potentially prevent reattach.
> 
> Reviewed-by: Matthew Rosato <mjrosato@linux.ibm.com>
> Cc: stable@vger.kernel.org
> Fixes: 4ec6054e7321 ("s390/pci: Report PCI error recovery results via SCLP")
> Reviewed-by: Farhan Ali <alifm@linux.ibm.com>
> Signed-off-by: Niklas Schnelle <schnelle@linux.ibm.com>
> ---
>  arch/s390/pci/pci_report.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/s390/pci/pci_report.c b/arch/s390/pci/pci_report.c
> index 7030f7052926..76b8afc146fe 100644
> --- a/arch/s390/pci/pci_report.c
> +++ b/arch/s390/pci/pci_report.c
> @@ -151,6 +151,7 @@ int zpci_report_status(struct zpci_dev *zdev, const char *operation, const char
>  	else
>  		pr_info("Reported PCI device status\n");
>  
> +	pci_dev_put(pdev);
>  	free_page((unsigned long)report);
>  
>  	return ret;

Looks good to me!


Reviewed-by: Benjamin Block <bblock@linux.ibm.com>

-- 
Best Regards, Benjamin Block        /        Linux on IBM Z Kernel Development
IBM Deutschland Research & Development GmbH    /   https://www.ibm.com/privacy
Vors. Aufs.-R.: Wolfgang Wendt         /        Geschäftsführung: David Faller
Sitz der Ges.: Ehningen     /     Registergericht: AmtsG Stuttgart, HRB 243294

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

* Re: [PATCH v2 2/2] s390/pci: Extend device lock to cover zpci_report_status()
  2026-08-19 21:30   ` Farhan Ali
@ 2026-08-21 12:50     ` Niklas Schnelle
  2026-08-21 12:59     ` Benjamin Block
  1 sibling, 0 replies; 13+ messages in thread
From: Niklas Schnelle @ 2026-08-21 12:50 UTC (permalink / raw)
  To: Farhan Ali, Gerd Bayer, Matthew Rosato, Benjamin Block,
	Julian Ruess
  Cc: Heiko Carstens, Vasily Gorbik, Alexander Gordeev, Sven Schnelle,
	Ramesh Errabolu, Tobias Schumacher, Halil Pasic,
	Peter Oberparleiter, Gerald Schaefer, Christian Borntraeger,
	linux-s390, linux-kernel

On Wed, 2026-08-19 at 14:30 -0700, Farhan Ali wrote:
> On 8/19/2026 2:58 AM, Niklas Schnelle wrote:
> > As zpci_report_status() accesses the device's driver the device lock
> > needs to be held. Extend the critical section to cover the
> > zpci_report_status() call.
> > 
> > Cc: stable@vger.kernel.org
> > Fixes: 4ec6054e7321 ("s390/pci: Report PCI error recovery results via SCLP")
> > Signed-off-by: Niklas Schnelle <schnelle@linux.ibm.com>
> > ---
> >   arch/s390/pci/pci_event.c | 2 +-
> >   1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/arch/s390/pci/pci_event.c b/arch/s390/pci/pci_event.c
> > index 839bd91c056e..48c150d6ba81 100644
> > --- a/arch/s390/pci/pci_event.c
> > +++ b/arch/s390/pci/pci_event.c
> > @@ -256,8 +256,8 @@ static pci_ers_result_t zpci_event_attempt_error_recovery(struct pci_dev *pdev)
> >   		driver->err_handler->resume(pdev);
> >   	pci_uevent_ers(pdev, PCI_ERS_RESULT_RECOVERED);
> >   out_unlock:
> > -	device_unlock(&pdev->dev);
> >   	zpci_report_status(zdev, "recovery", status_str);
> > +	device_unlock(&pdev->dev);
> >   
> >   	return ers_res;
> >   }
> 
> AFAICT this change is correct, but should we also add a lockdep_assert 
> in zpci_report_status()? Since this is the only placed its called, it 
> maybe fine as is. I just fear that we could miss on getting the lock if 
> we were to re-use zpci_report_status().
> 
> Either way
> Reviewed-by: Farhan Ali<alifm@linux.ibm.com>

Was pondering that as well. I was on the edge so left it out but since
you're mentioning it too I'll add it and send a v3 with that plus all
the R-bs.

Thanks,
Niklas

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

* Re: [PATCH v2 2/2] s390/pci: Extend device lock to cover zpci_report_status()
  2026-08-19 21:30   ` Farhan Ali
  2026-08-21 12:50     ` Niklas Schnelle
@ 2026-08-21 12:59     ` Benjamin Block
  2026-08-21 13:14       ` Niklas Schnelle
  1 sibling, 1 reply; 13+ messages in thread
From: Benjamin Block @ 2026-08-21 12:59 UTC (permalink / raw)
  To: Farhan Ali
  Cc: Niklas Schnelle, Gerd Bayer, Matthew Rosato, Julian Ruess,
	Heiko Carstens, Vasily Gorbik, Alexander Gordeev, Sven Schnelle,
	Ramesh Errabolu, Tobias Schumacher, Halil Pasic,
	Peter Oberparleiter, Gerald Schaefer, Christian Borntraeger,
	linux-s390, linux-kernel

On Wed, Aug 19, 2026 at 02:30:18PM -0700, Farhan Ali wrote:
> 
> On 8/19/2026 2:58 AM, Niklas Schnelle wrote:
> > As zpci_report_status() accesses the device's driver the device lock
> > needs to be held. Extend the critical section to cover the
> > zpci_report_status() call.
> >
> > Cc: stable@vger.kernel.org
> > Fixes: 4ec6054e7321 ("s390/pci: Report PCI error recovery results via SCLP")
> > Signed-off-by: Niklas Schnelle <schnelle@linux.ibm.com>
> > ---
> >   arch/s390/pci/pci_event.c | 2 +-
> >   1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/arch/s390/pci/pci_event.c b/arch/s390/pci/pci_event.c
> > index 839bd91c056e..48c150d6ba81 100644
> > --- a/arch/s390/pci/pci_event.c
> > +++ b/arch/s390/pci/pci_event.c
> > @@ -256,8 +256,8 @@ static pci_ers_result_t zpci_event_attempt_error_recovery(struct pci_dev *pdev)
> >   		driver->err_handler->resume(pdev);
> >   	pci_uevent_ers(pdev, PCI_ERS_RESULT_RECOVERED);
> >   out_unlock:
> > -	device_unlock(&pdev->dev);
> >   	zpci_report_status(zdev, "recovery", status_str);
> > +	device_unlock(&pdev->dev);
> >   
> >   	return ers_res;
> >   }
> 
> AFAICT this change is correct, but should we also add a lockdep_assert 

Andy maybe the context one `__must_hold()` or something as function attribute.

> in zpci_report_status()? Since this is the only placed its called, it 
> maybe fine as is. I just fear that we could miss on getting the lock if 
> we were to re-use zpci_report_status().

Yeah, I agree. It's not obvious.

I guess the critical point here why we need the lock is this line:

		driver = to_pci_driver(pdev->dev.driver);

right? Because we assume the relation between driver and device stays intact
after we get that assignment.

Because otherwise I don't see why we must get the lock, if we get a valid
reference in zpci_report_status().

-- 
Best Regards, Benjamin Block        /        Linux on IBM Z Kernel Development
IBM Deutschland Research & Development GmbH    /   https://www.ibm.com/privacy
Vors. Aufs.-R.: Wolfgang Wendt         /        Geschäftsführung: David Faller
Sitz der Ges.: Ehningen     /     Registergericht: AmtsG Stuttgart, HRB 243294

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

* Re: [PATCH v2 2/2] s390/pci: Extend device lock to cover zpci_report_status()
  2026-08-21 12:59     ` Benjamin Block
@ 2026-08-21 13:14       ` Niklas Schnelle
  2026-08-21 13:58         ` Benjamin Block
  0 siblings, 1 reply; 13+ messages in thread
From: Niklas Schnelle @ 2026-08-21 13:14 UTC (permalink / raw)
  To: Benjamin Block, Farhan Ali
  Cc: Gerd Bayer, Matthew Rosato, Julian Ruess, Heiko Carstens,
	Vasily Gorbik, Alexander Gordeev, Sven Schnelle, Ramesh Errabolu,
	Tobias Schumacher, Halil Pasic, Peter Oberparleiter,
	Gerald Schaefer, Christian Borntraeger, linux-s390, linux-kernel

On Fri, 2026-08-21 at 14:59 +0200, Benjamin Block wrote:
> On Wed, Aug 19, 2026 at 02:30:18PM -0700, Farhan Ali wrote:
> > 
> > On 8/19/2026 2:58 AM, Niklas Schnelle wrote:
> > > As zpci_report_status() accesses the device's driver the device lock
> > > needs to be held. Extend the critical section to cover the
> > > zpci_report_status() call.
> > > 
> > > Cc: stable@vger.kernel.org
> > > Fixes: 4ec6054e7321 ("s390/pci: Report PCI error recovery results via SCLP")
> > > Signed-off-by: Niklas Schnelle <schnelle@linux.ibm.com>
> > > ---
> > >   arch/s390/pci/pci_event.c | 2 +-
> > >   1 file changed, 1 insertion(+), 1 deletion(-)
> > > 
> > > diff --git a/arch/s390/pci/pci_event.c b/arch/s390/pci/pci_event.c
> > > index 839bd91c056e..48c150d6ba81 100644
> > > --- a/arch/s390/pci/pci_event.c
> > > +++ b/arch/s390/pci/pci_event.c
> > > @@ -256,8 +256,8 @@ static pci_ers_result_t zpci_event_attempt_error_recovery(struct pci_dev *pdev)
> > >   		driver->err_handler->resume(pdev);
> > >   	pci_uevent_ers(pdev, PCI_ERS_RESULT_RECOVERED);
> > >   out_unlock:
> > > -	device_unlock(&pdev->dev);
> > >   	zpci_report_status(zdev, "recovery", status_str);
> > > +	device_unlock(&pdev->dev);
> > >   
> > >   	return ers_res;
> > >   }
> > 
> > AFAICT this change is correct, but should we also add a lockdep_assert 
> 
> Andy maybe the context one `__must_hold()` or something as function attribute.
> 
> > in zpci_report_status()? Since this is the only placed its called, it 
> > maybe fine as is. I just fear that we could miss on getting the lock if 
> > we were to re-use zpci_report_status().
> 
> Yeah, I agree. It's not obvious.
> 
> I guess the critical point here why we need the lock is this line:
> 
> 		driver = to_pci_driver(pdev->dev.driver);
> 
> right? Because we assume the relation between driver and device stays intact
> after we get that assignment.
> 
> Because otherwise I don't see why we must get the lock, if we get a valid
> reference in zpci_report_status().

Yes exactly, we need to make sure the driver isn't unbound or worse
unloaded in the middle of it. It's quite subtle which is why I forgot
it in the first place I guess.

Also note that the function may be called, and does handle, both an
unbound device (driver == NULL) and/or a zdev prior to probing the
associated pdev (pdev == NULL). This means the device_lock_assert()
needs to be inside the !pdev block. I'd think this also means we can't
really use __must_hold(), right?

Thanks,
Niklas

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

* Re: [PATCH v2 2/2] s390/pci: Extend device lock to cover zpci_report_status()
  2026-08-21 13:14       ` Niklas Schnelle
@ 2026-08-21 13:58         ` Benjamin Block
  0 siblings, 0 replies; 13+ messages in thread
From: Benjamin Block @ 2026-08-21 13:58 UTC (permalink / raw)
  To: Niklas Schnelle
  Cc: Farhan Ali, Gerd Bayer, Matthew Rosato, Julian Ruess,
	Heiko Carstens, Vasily Gorbik, Alexander Gordeev, Sven Schnelle,
	Ramesh Errabolu, Tobias Schumacher, Halil Pasic,
	Peter Oberparleiter, Gerald Schaefer, Christian Borntraeger,
	linux-s390, linux-kernel

On Fri, Aug 21, 2026 at 03:14:32PM +0200, Niklas Schnelle wrote:
> On Fri, 2026-08-21 at 14:59 +0200, Benjamin Block wrote:
> > On Wed, Aug 19, 2026 at 02:30:18PM -0700, Farhan Ali wrote:
> > > 
> > > On 8/19/2026 2:58 AM, Niklas Schnelle wrote:
> > > > As zpci_report_status() accesses the device's driver the device lock
> > > > needs to be held. Extend the critical section to cover the
> > > > zpci_report_status() call.
> > > > 
> > > > Cc: stable@vger.kernel.org
> > > > Fixes: 4ec6054e7321 ("s390/pci: Report PCI error recovery results via SCLP")
> > > > Signed-off-by: Niklas Schnelle <schnelle@linux.ibm.com>
> > > > ---
> > > >   arch/s390/pci/pci_event.c | 2 +-
> > > >   1 file changed, 1 insertion(+), 1 deletion(-)
> > > > 
> > > > diff --git a/arch/s390/pci/pci_event.c b/arch/s390/pci/pci_event.c
> > > > index 839bd91c056e..48c150d6ba81 100644
> > > > --- a/arch/s390/pci/pci_event.c
> > > > +++ b/arch/s390/pci/pci_event.c
> > > > @@ -256,8 +256,8 @@ static pci_ers_result_t zpci_event_attempt_error_recovery(struct pci_dev *pdev)
> > > >   		driver->err_handler->resume(pdev);
> > > >   	pci_uevent_ers(pdev, PCI_ERS_RESULT_RECOVERED);
> > > >   out_unlock:
> > > > -	device_unlock(&pdev->dev);
> > > >   	zpci_report_status(zdev, "recovery", status_str);
> > > > +	device_unlock(&pdev->dev);
> > > >   
> > > >   	return ers_res;
> > > >   }
> > > 
> > > AFAICT this change is correct, but should we also add a lockdep_assert 
> > 
> > Andy maybe the context one `__must_hold()` or something as function attribute.
> > 
> > > in zpci_report_status()? Since this is the only placed its called, it 
> > > maybe fine as is. I just fear that we could miss on getting the lock if 
> > > we were to re-use zpci_report_status().
> > 
> > Yeah, I agree. It's not obvious.
> > 
> > I guess the critical point here why we need the lock is this line:
> > 
> > 		driver = to_pci_driver(pdev->dev.driver);
> > 
> > right? Because we assume the relation between driver and device stays intact
> > after we get that assignment.
> > 
> > Because otherwise I don't see why we must get the lock, if we get a valid
> > reference in zpci_report_status().
> 
> Yes exactly, we need to make sure the driver isn't unbound or worse
> unloaded in the middle of it. It's quite subtle which is why I forgot
> it in the first place I guess.
> 
> Also note that the function may be called, and does handle, both an
> unbound device (driver == NULL) and/or a zdev prior to probing the
> associated pdev (pdev == NULL). This means the device_lock_assert()
> needs to be inside the !pdev block. I'd think this also means we can't
> really use __must_hold(), right?

Hmm, true. Yeah, that makes it awkward. Doesn't seem like we can use
`__must_hold()` here then. Always found that nice since it is right next to
the function name; can hardly miss it when one uses the function.

-- 
Best Regards, Benjamin Block        /        Linux on IBM Z Kernel Development
IBM Deutschland Research & Development GmbH    /   https://www.ibm.com/privacy
Vors. Aufs.-R.: Wolfgang Wendt         /        Geschäftsführung: David Faller
Sitz der Ges.: Ehningen     /     Registergericht: AmtsG Stuttgart, HRB 243294

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

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

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-19  9:58 [PATCH v2 0/2] s390/pci: Fix missing pci_dev_put() in zpci_report_status() Niklas Schnelle
2026-08-19  9:58 ` [PATCH v2 1/2] " Niklas Schnelle
2026-08-19 10:08   ` sashiko-bot
2026-08-20  7:50     ` Niklas Schnelle
2026-08-21 12:48   ` Benjamin Block
2026-08-19  9:58 ` [PATCH v2 2/2] s390/pci: Extend device lock to cover zpci_report_status() Niklas Schnelle
2026-08-19 10:19   ` sashiko-bot
2026-08-19 14:08   ` Matthew Rosato
2026-08-19 21:30   ` Farhan Ali
2026-08-21 12:50     ` Niklas Schnelle
2026-08-21 12:59     ` Benjamin Block
2026-08-21 13:14       ` Niklas Schnelle
2026-08-21 13:58         ` Benjamin Block

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.