* [PATCH] i2c: nvidia-gpu: fix autosuspend cleanup
@ 2026-08-12 9:23 Guangshuo Li
2026-08-20 14:48 ` Krzysztof Kozlowski
0 siblings, 1 reply; 2+ messages in thread
From: Guangshuo Li @ 2026-08-12 9:23 UTC (permalink / raw)
To: Ajay Gupta, Andi Shyti, Wolfram Sang, linux-i2c, linux-kernel
Cc: Guangshuo Li, stable
gpu_i2c_probe() calls pm_runtime_use_autosuspend(), but the remove
path does not call the matching pm_runtime_dont_use_autosuspend().
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() during driver removal to
properly undo the autosuspend setting.
This issue was found by manual code inspection.
Fixes: d4a4f927e4dd ("i2c: nvidia-gpu: add runtime pm support")
Cc: stable@vger.kernel.org
Signed-off-by: Guangshuo Li <lgs201920130244@gmail.com>
---
drivers/i2c/busses/i2c-nvidia-gpu.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/i2c/busses/i2c-nvidia-gpu.c b/drivers/i2c/busses/i2c-nvidia-gpu.c
index 14c059b03945..9dbe1fe22412 100644
--- a/drivers/i2c/busses/i2c-nvidia-gpu.c
+++ b/drivers/i2c/busses/i2c-nvidia-gpu.c
@@ -334,6 +334,7 @@ static void gpu_i2c_remove(struct pci_dev *pdev)
struct gpu_i2c_dev *i2cd = pci_get_drvdata(pdev);
pm_runtime_get_noresume(i2cd->dev);
+ pm_runtime_dont_use_autosuspend(i2cd->dev);
i2c_del_adapter(&i2cd->adapter);
pci_free_irq_vectors(pdev);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] i2c: nvidia-gpu: fix autosuspend cleanup
2026-08-12 9:23 [PATCH] i2c: nvidia-gpu: 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, Ajay Gupta, Andi Shyti, Wolfram Sang, linux-i2c,
linux-kernel
Cc: stable
On 12/08/2026 11:23, Guangshuo Li wrote:
> gpu_i2c_probe() calls pm_runtime_use_autosuspend(), but the remove
> path does not call the matching pm_runtime_dont_use_autosuspend().
>
> 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() during driver removal to
> properly undo the autosuspend setting.
>
> This issue was found by manual code inspection.
>
> Fixes: d4a4f927e4dd ("i2c: nvidia-gpu: add runtime pm support")
> Cc: stable@vger.kernel.org
> Signed-off-by: Guangshuo Li <lgs201920130244@gmail.com>
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 9:23 [PATCH] i2c: nvidia-gpu: fix autosuspend cleanup Guangshuo Li
2026-08-20 14:48 ` Krzysztof Kozlowski
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.