* [PATCH 5.15/6.12] iio: light: bh1780: fix PM runtime leak on error path
@ 2026-06-19 14:34 Elizaveta Tereshkina
2026-06-21 13:47 ` Sasha Levin
0 siblings, 1 reply; 2+ messages in thread
From: Elizaveta Tereshkina @ 2026-06-19 14:34 UTC (permalink / raw)
To: stable, Greg Kroah-Hartman
Cc: Elizaveta Tereshkina, Jonathan Cameron, Lars-Peter Clausen,
Antoniu Miclaus, Linus Walleij, Sasha Levin, Ulf Hansson,
linux-iio, linux-kernel, lvc-project, Stable, Jonathan Cameron
From: Antoniu Miclaus <antoniu.miclaus@analog.com>
commit dd72e6c3cdea05cad24e99710939086f7a113fb5 upstream.
Move pm_runtime_put_autosuspend() before the error check to ensure
the PM runtime reference count is always decremented after
pm_runtime_get_sync(), regardless of whether the read operation
succeeds or fails.
Fixes: 1f0477f18306 ("iio: light: new driver for the ROHM BH1780")
Signed-off-by: Antoniu Miclaus <antoniu.miclaus@analog.com>
Reviewed-by: Linus Walleij <linusw@kernel.org>
Cc: <Stable@vger.kernel.org>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
[ moved both pm_runtime_mark_last_busy() and pm_runtime_put_autosuspend() before the error check instead of just pm_runtime_put_autosuspend() ]
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Elizaveta Tereshkina <etereshkina@astralinux.ru>
---
Backport fix for CVE-2026-43355
drivers/iio/light/bh1780.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/iio/light/bh1780.c b/drivers/iio/light/bh1780.c
index 475f44954f61..f478f12640d5 100644
--- a/drivers/iio/light/bh1780.c
+++ b/drivers/iio/light/bh1780.c
@@ -109,10 +109,10 @@ static int bh1780_read_raw(struct iio_dev *indio_dev,
case IIO_LIGHT:
pm_runtime_get_sync(&bh1780->client->dev);
value = bh1780_read_word(bh1780, BH1780_REG_DLOW);
- if (value < 0)
- return value;
pm_runtime_mark_last_busy(&bh1780->client->dev);
pm_runtime_put_autosuspend(&bh1780->client->dev);
+ if (value < 0)
+ return value;
*val = value;
return IIO_VAL_INT;
--
2.39.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH 5.15/6.12] iio: light: bh1780: fix PM runtime leak on error path
2026-06-19 14:34 [PATCH 5.15/6.12] iio: light: bh1780: fix PM runtime leak on error path Elizaveta Tereshkina
@ 2026-06-21 13:47 ` Sasha Levin
0 siblings, 0 replies; 2+ messages in thread
From: Sasha Levin @ 2026-06-21 13:47 UTC (permalink / raw)
To: stable, Greg Kroah-Hartman
Cc: Sasha Levin, Elizaveta Tereshkina, Jonathan Cameron,
Lars-Peter Clausen, Antoniu Miclaus, Linus Walleij, Ulf Hansson,
linux-iio, linux-kernel, lvc-project, Stable, Jonathan Cameron
> commit dd72e6c3cdea05cad24e99710939086f7a113fb5 upstream.
>
> Move pm_runtime_put_autosuspend() before the error check to ensure
> the PM runtime reference count is always decremented after
> pm_runtime_get_sync(), regardless of whether the read operation
> succeeds or fails.
Queued for 5.15 and 6.12, thanks.
--
Thanks,
Sasha
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-06-21 13:47 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-19 14:34 [PATCH 5.15/6.12] iio: light: bh1780: fix PM runtime leak on error path Elizaveta Tereshkina
2026-06-21 13:47 ` Sasha Levin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox