* [PATCH] staging: iio: resolver: ad2s1210: fix return with lock held
@ 2023-10-04 14:17 David Lechner
2023-10-05 14:04 ` Jonathan Cameron
0 siblings, 1 reply; 2+ messages in thread
From: David Lechner @ 2023-10-04 14:17 UTC (permalink / raw)
To: linux-iio, linux-staging
Cc: David Lechner, Jonathan Cameron, Michael Hennerich, linux-kernel,
kernel test robot, Dan Carpenter
We missed a return statement in ad2s1210_initial() that would cause
the lock to be held when returning an error.
This is fixed by replacing the return with a goto to release the lock
before returning.
Reported-by: kernel test robot <lkp@intel.com>
Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
Closes: https://lore.kernel.org/r/202310030222.iokamE9T-lkp@intel.com/
Fixes: 0d03d0e65846 ("staging: iio: resolver: ad2s1210: rework gpios")
Signed-off-by: David Lechner <dlechner@baylibre.com>
---
drivers/staging/iio/resolver/ad2s1210.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/iio/resolver/ad2s1210.c b/drivers/staging/iio/resolver/ad2s1210.c
index 98afd2e9ea41..67d8af0dd7ae 100644
--- a/drivers/staging/iio/resolver/ad2s1210.c
+++ b/drivers/staging/iio/resolver/ad2s1210.c
@@ -555,7 +555,7 @@ static int ad2s1210_initial(struct ad2s1210_state *st)
mutex_lock(&st->lock);
ret = ad2s1210_set_resolution_gpios(st, st->resolution);
if (ret < 0)
- return ret;
+ goto error_ret;
/* Use default config register value plus resolution from devicetree. */
data = FIELD_PREP(AD2S1210_PHASE_LOCK_RANGE_44, 1);
---
base-commit: a533eeaef80e879b3ad1937eee7a43d1f9961c5d
change-id: 20231004-staging-iio-resolver-ad2s1210-fix-return-with-lock-held-f547ce6fae49
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] staging: iio: resolver: ad2s1210: fix return with lock held
2023-10-04 14:17 [PATCH] staging: iio: resolver: ad2s1210: fix return with lock held David Lechner
@ 2023-10-05 14:04 ` Jonathan Cameron
0 siblings, 0 replies; 2+ messages in thread
From: Jonathan Cameron @ 2023-10-05 14:04 UTC (permalink / raw)
To: David Lechner
Cc: linux-iio, linux-staging, Michael Hennerich, linux-kernel,
kernel test robot, Dan Carpenter
On Wed, 4 Oct 2023 09:17:26 -0500
David Lechner <dlechner@baylibre.com> wrote:
> We missed a return statement in ad2s1210_initial() that would cause
> the lock to be held when returning an error.
>
> This is fixed by replacing the return with a goto to release the lock
> before returning.
>
> Reported-by: kernel test robot <lkp@intel.com>
> Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
> Closes: https://lore.kernel.org/r/202310030222.iokamE9T-lkp@intel.com/
> Fixes: 0d03d0e65846 ("staging: iio: resolver: ad2s1210: rework gpios")
> Signed-off-by: David Lechner <dlechner@baylibre.com>
> ---
> drivers/staging/iio/resolver/ad2s1210.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/iio/resolver/ad2s1210.c b/drivers/staging/iio/resolver/ad2s1210.c
> index 98afd2e9ea41..67d8af0dd7ae 100644
> --- a/drivers/staging/iio/resolver/ad2s1210.c
> +++ b/drivers/staging/iio/resolver/ad2s1210.c
> @@ -555,7 +555,7 @@ static int ad2s1210_initial(struct ad2s1210_state *st)
> mutex_lock(&st->lock);
> ret = ad2s1210_set_resolution_gpios(st, st->resolution);
> if (ret < 0)
> - return ret;
> + goto error_ret;
Ah. I squashed the same fix into the original patch as it wasn't yet on a non
rebasing tree.
Thanks
Jonathan
>
> /* Use default config register value plus resolution from devicetree. */
> data = FIELD_PREP(AD2S1210_PHASE_LOCK_RANGE_44, 1);
>
> ---
> base-commit: a533eeaef80e879b3ad1937eee7a43d1f9961c5d
> change-id: 20231004-staging-iio-resolver-ad2s1210-fix-return-with-lock-held-f547ce6fae49
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-10-05 14:03 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-04 14:17 [PATCH] staging: iio: resolver: ad2s1210: fix return with lock held David Lechner
2023-10-05 14:04 ` Jonathan Cameron
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox