mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] i2c: mv64xxx: fix autosuspend cleanup
@ 2026-08-12  8:58 Guangshuo Li
  2026-08-20 14:48 ` Krzysztof Kozlowski
  0 siblings, 1 reply; 2+ messages in thread
From: Guangshuo Li @ 2026-08-12  8:58 UTC (permalink / raw)
  To: Gregory CLEMENT, Andi Shyti, Samuel Holland, Wolfram Sang,
	linux-i2c, linux-kernel
  Cc: Guangshuo Li, stable

mv64xxx_i2c_probe() calls pm_runtime_use_autosuspend(), but the probe
failure and remove paths do not call the matching
pm_runtime_dont_use_autosuspend() before disabling runtime PM.

If the autosuspend delay is set to a negative value while autosuspend
is enabled, the runtime PM core increments usage_count to prevent
runtime suspend. Without undoing the autosuspend setting during
teardown, this reference is not dropped and usage_count remains
unbalanced.

Call pm_runtime_dont_use_autosuspend() in both the probe failure and
remove paths before disabling runtime PM to properly undo the
autosuspend setting.

This issue was found by manual code inspection.

Fixes: e5c02cf54154 ("i2c: mv64xxx: Add runtime PM support")
Cc: stable@vger.kernel.org
Signed-off-by: Guangshuo Li <lgs201920130244@gmail.com>
---
 drivers/i2c/busses/i2c-mv64xxx.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/i2c/busses/i2c-mv64xxx.c b/drivers/i2c/busses/i2c-mv64xxx.c
index 1acba628e16c..995b0e9b7f53 100644
--- a/drivers/i2c/busses/i2c-mv64xxx.c
+++ b/drivers/i2c/busses/i2c-mv64xxx.c
@@ -1069,6 +1069,7 @@ mv64xxx_i2c_probe(struct platform_device *pd)
 exit_free_irq:
 	free_irq(drv_data->irq, drv_data);
 exit_disable_pm:
+	pm_runtime_dont_use_autosuspend(&pd->dev);
 	pm_runtime_disable(&pd->dev);
 	if (!pm_runtime_status_suspended(&pd->dev))
 		mv64xxx_i2c_runtime_suspend(&pd->dev);
@@ -1083,6 +1084,7 @@ mv64xxx_i2c_remove(struct platform_device *pd)
 
 	i2c_del_adapter(&drv_data->adapter);
 	free_irq(drv_data->irq, drv_data);
+	pm_runtime_dont_use_autosuspend(&pd->dev);
 	pm_runtime_disable(&pd->dev);
 	if (!pm_runtime_status_suspended(&pd->dev))
 		mv64xxx_i2c_runtime_suspend(&pd->dev);
-- 
2.43.0


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

* Re: [PATCH] i2c: mv64xxx: fix autosuspend cleanup
  2026-08-12  8:58 [PATCH] i2c: mv64xxx: fix autosuspend cleanup Guangshuo Li
@ 2026-08-20 14:48 ` Krzysztof Kozlowski
  0 siblings, 0 replies; 2+ messages in thread
From: Krzysztof Kozlowski @ 2026-08-20 14:48 UTC (permalink / raw)
  To: Guangshuo Li, Gregory CLEMENT, Andi Shyti, Samuel Holland,
	Wolfram Sang, linux-i2c, linux-kernel
  Cc: stable

On 12/08/2026 10:58, Guangshuo Li wrote:
> mv64xxx_i2c_probe() calls pm_runtime_use_autosuspend(), but the probe
> failure and remove paths do not call the matching
> pm_runtime_dont_use_autosuspend() before disabling runtime PM.
> 
> If the autosuspend delay is set to a negative value while autosuspend
> is enabled, the runtime PM core increments usage_count to prevent
> runtime suspend. Without undoing the autosuspend setting during
> teardown, this reference is not dropped and usage_count remains
> unbalanced.
> 
> Call pm_runtime_dont_use_autosuspend() in both the probe failure and
> remove paths before disabling runtime PM to properly undo the
> autosuspend setting.
> 
> This issue was found by manual code inspection.
> 
> Fixes: e5c02cf54154 ("i2c: mv64xxx: Add runtime PM support")
> Cc: stable@vger.kernel.org
> Signed-off-by: Guangshuo Li <lgs201920130244@gmail.com>
> ---
>  drivers/i2c/busses/i2c-mv64xxx.c | 2 ++
>  1 file changed, 2 insertions(+)

Srsly, one more separate I2C posting, just like you did for dma, crypto,
drm and everywhere else. You seriously waste our time.

You sent vast amount of patches, all separate, making it very difficult
to track and respond in efficient way. Do not do that.

Group your work per subsystem.

You were asked to clarify and respond to incorrect fixes statement. I do
not see how you clarified and responded at all.

Best regards,
Krzysztof

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

end of thread, other threads:[~2026-08-20 14:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-12  8:58 [PATCH] i2c: mv64xxx: fix autosuspend cleanup Guangshuo Li
2026-08-20 14:48 ` Krzysztof Kozlowski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®