* [PATCH v2] iio: adc: viperboard: Fix error handling in vprbrd_iio_read_raw
@ 2026-05-07 19:07 Salah Triki
2026-05-09 7:56 ` Andy Shevchenko
2026-05-09 8:46 ` Nuno Sá
0 siblings, 2 replies; 3+ messages in thread
From: Salah Triki @ 2026-05-07 19:07 UTC (permalink / raw)
To: Jonathan Cameron, David Lechner, Nuno Sá, Andy Shevchenko
Cc: linux-iio, linux-kernel, Salah Triki, Joshua Crofts,
Maxwell Doose
The driver proceeds to the reception phase even if the preceding
transmission fails.
This uses a goto error label for an early bail out and ensures the mutex is
properly unlocked in case of failure.
Fixes: ffd8a6e7a778 ("iio: adc: Add viperboard adc driver")
Signed-off-by: Salah Triki <salah.triki@gmail.com>
Reviewed-by: Joshua Crofts <joshua.crofts1@gmail.com>
Reviewed-by: Maxwell Doose <m32285159@gmail.com>
---
Changes in v2:
- Add "adc" to the patch title.
- Move dev_err() out of the mutex critical section.
- Include Reviewed-by tags from Joshua and Maxwell.
drivers/iio/adc/viperboard_adc.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/iio/adc/viperboard_adc.c b/drivers/iio/adc/viperboard_adc.c
index 9bb0b83c8f67..f7ce3effd730 100644
--- a/drivers/iio/adc/viperboard_adc.c
+++ b/drivers/iio/adc/viperboard_adc.c
@@ -70,8 +70,10 @@ static int vprbrd_iio_read_raw(struct iio_dev *iio_dev,
VPRBRD_USB_TYPE_OUT, 0x0000, 0x0000, admsg,
sizeof(struct vprbrd_adc_msg), VPRBRD_USB_TIMEOUT_MS);
if (ret != sizeof(struct vprbrd_adc_msg)) {
- dev_err(&iio_dev->dev, "usb send error on adc read\n");
error = -EREMOTEIO;
+ mutex_unlock(&vb->lock);
+ dev_err(&iio_dev->dev, "usb send error on adc read\n");
+ goto error;
}
ret = usb_control_msg(vb->usb_dev,
--
2.43.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH v2] iio: adc: viperboard: Fix error handling in vprbrd_iio_read_raw
2026-05-07 19:07 [PATCH v2] iio: adc: viperboard: Fix error handling in vprbrd_iio_read_raw Salah Triki
@ 2026-05-09 7:56 ` Andy Shevchenko
2026-05-09 8:46 ` Nuno Sá
1 sibling, 0 replies; 3+ messages in thread
From: Andy Shevchenko @ 2026-05-09 7:56 UTC (permalink / raw)
To: Salah Triki
Cc: Jonathan Cameron, David Lechner, Nuno Sá, Andy Shevchenko,
linux-iio, linux-kernel, Joshua Crofts, Maxwell Doose
On Thu, May 07, 2026 at 08:07:51PM +0100, Salah Triki wrote:
> The driver proceeds to the reception phase even if the preceding
> transmission fails.
>
> This uses a goto error label for an early bail out and ensures the mutex is
> properly unlocked in case of failure.
...
> if (ret != sizeof(struct vprbrd_adc_msg)) {
> - dev_err(&iio_dev->dev, "usb send error on adc read\n");
> error = -EREMOTEIO;
This also a local variable that doesn't need to be in the critical section,
right?
> + mutex_unlock(&vb->lock);
> + dev_err(&iio_dev->dev, "usb send error on adc read\n");
> + goto error;
> }
--
With Best Regards,
Andy Shevchenko
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH v2] iio: adc: viperboard: Fix error handling in vprbrd_iio_read_raw
2026-05-07 19:07 [PATCH v2] iio: adc: viperboard: Fix error handling in vprbrd_iio_read_raw Salah Triki
2026-05-09 7:56 ` Andy Shevchenko
@ 2026-05-09 8:46 ` Nuno Sá
1 sibling, 0 replies; 3+ messages in thread
From: Nuno Sá @ 2026-05-09 8:46 UTC (permalink / raw)
To: Salah Triki, Jonathan Cameron, David Lechner, Nuno Sá,
Andy Shevchenko
Cc: linux-iio, linux-kernel, Joshua Crofts, Maxwell Doose
On Thu, 2026-05-07 at 20:07 +0100, Salah Triki wrote:
> The driver proceeds to the reception phase even if the preceding
> transmission fails.
>
> This uses a goto error label for an early bail out and ensures the mutex is
> properly unlocked in case of failure.
>
> Fixes: ffd8a6e7a778 ("iio: adc: Add viperboard adc driver")
> Signed-off-by: Salah Triki <salah.triki@gmail.com>
> Reviewed-by: Joshua Crofts <joshua.crofts1@gmail.com>
> Reviewed-by: Maxwell Doose <m32285159@gmail.com>
> ---
LGTM (though Andy's comment makes sense):
Reviewed-by: Nuno Sá <nuno.sa@analog.com>
> Changes in v2:
> - Add "adc" to the patch title.
> - Move dev_err() out of the mutex critical section.
> - Include Reviewed-by tags from Joshua and Maxwell.
>
> drivers/iio/adc/viperboard_adc.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/iio/adc/viperboard_adc.c b/drivers/iio/adc/viperboard_adc.c
> index 9bb0b83c8f67..f7ce3effd730 100644
> --- a/drivers/iio/adc/viperboard_adc.c
> +++ b/drivers/iio/adc/viperboard_adc.c
> @@ -70,8 +70,10 @@ static int vprbrd_iio_read_raw(struct iio_dev *iio_dev,
> VPRBRD_USB_TYPE_OUT, 0x0000, 0x0000, admsg,
> sizeof(struct vprbrd_adc_msg), VPRBRD_USB_TIMEOUT_MS);
> if (ret != sizeof(struct vprbrd_adc_msg)) {
> - dev_err(&iio_dev->dev, "usb send error on adc read\n");
> error = -EREMOTEIO;
> + mutex_unlock(&vb->lock);
> + dev_err(&iio_dev->dev, "usb send error on adc read\n");
> + goto error;
> }
>
> ret = usb_control_msg(vb->usb_dev,
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-05-09 8:45 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-07 19:07 [PATCH v2] iio: adc: viperboard: Fix error handling in vprbrd_iio_read_raw Salah Triki
2026-05-09 7:56 ` Andy Shevchenko
2026-05-09 8:46 ` Nuno Sá
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox