* [PATCH v2 0/2] gpio: Check for error from devm_mutex_init()
@ 2024-10-30 17:36 Andy Shevchenko
2024-10-30 17:36 ` [PATCH v2 1/2] gpio: mpsse: Check for error code from devm_mutex_init() call Andy Shevchenko
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Andy Shevchenko @ 2024-10-30 17:36 UTC (permalink / raw)
To: Mary Strodl, Andy Shevchenko, Wolfram Sang, linux-gpio,
linux-kernel
Cc: Linus Walleij, Bartosz Golaszewski
Ignoring error checking from devm calls is a bad practice in general.
While not critical today, it may become a problem tomorrow.
Fix this for devm_mutex_init().
In v2:
- fixed obvious typo (Mary)
- collected tags (Mary, Wolfram)
Andy Shevchenko (2):
gpio: mpsse: Check for error code from devm_mutex_init() call
gpio: sloppy-logic-analyzer: Check for error code from
devm_mutex_init() call
drivers/gpio/gpio-mpsse.c | 9 +++++++--
drivers/gpio/gpio-sloppy-logic-analyzer.c | 4 +++-
2 files changed, 10 insertions(+), 3 deletions(-)
--
2.43.0.rc1.1336.g36b5255a03ac
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH v2 1/2] gpio: mpsse: Check for error code from devm_mutex_init() call
2024-10-30 17:36 [PATCH v2 0/2] gpio: Check for error from devm_mutex_init() Andy Shevchenko
@ 2024-10-30 17:36 ` Andy Shevchenko
2024-10-30 17:36 ` [PATCH v2 2/2] gpio: sloppy-logic-analyzer: " Andy Shevchenko
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Andy Shevchenko @ 2024-10-30 17:36 UTC (permalink / raw)
To: Mary Strodl, Andy Shevchenko, Wolfram Sang, linux-gpio,
linux-kernel
Cc: Linus Walleij, Bartosz Golaszewski
Even if it's not critical, the avoidance of checking the error code
from devm_mutex_init() call today diminishes the point of using devm
variant of it. Tomorrow it may even leak something. Add the missed
check.
Fixes: c46a74ff05c0 ("gpio: add support for FTDI's MPSSE as GPIO")
Reviewed-by: Mary Strodl <mstrodl@csh.rit.edu>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
drivers/gpio/gpio-mpsse.c | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/drivers/gpio/gpio-mpsse.c b/drivers/gpio/gpio-mpsse.c
index 3ab6651d2226..9ef24449126a 100644
--- a/drivers/gpio/gpio-mpsse.c
+++ b/drivers/gpio/gpio-mpsse.c
@@ -430,8 +430,13 @@ static int gpio_mpsse_probe(struct usb_interface *interface,
if (err)
return err;
- devm_mutex_init(dev, &priv->io_mutex);
- devm_mutex_init(dev, &priv->irq_mutex);
+ err = devm_mutex_init(dev, &priv->io_mutex);
+ if (err)
+ return err;
+
+ err = devm_mutex_init(dev, &priv->irq_mutex);
+ if (err)
+ return err;
priv->gpio.label = devm_kasprintf(dev, GFP_KERNEL,
"gpio-mpsse.%d.%d",
--
2.43.0.rc1.1336.g36b5255a03ac
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH v2 2/2] gpio: sloppy-logic-analyzer: Check for error code from devm_mutex_init() call
2024-10-30 17:36 [PATCH v2 0/2] gpio: Check for error from devm_mutex_init() Andy Shevchenko
2024-10-30 17:36 ` [PATCH v2 1/2] gpio: mpsse: Check for error code from devm_mutex_init() call Andy Shevchenko
@ 2024-10-30 17:36 ` Andy Shevchenko
2024-10-31 12:47 ` (subset) [PATCH v2 0/2] gpio: Check for error from devm_mutex_init() Bartosz Golaszewski
2024-10-31 12:48 ` Bartosz Golaszewski
3 siblings, 0 replies; 5+ messages in thread
From: Andy Shevchenko @ 2024-10-30 17:36 UTC (permalink / raw)
To: Mary Strodl, Andy Shevchenko, Wolfram Sang, linux-gpio,
linux-kernel
Cc: Linus Walleij, Bartosz Golaszewski
Even if it's not critical, the avoidance of checking the error code
from devm_mutex_init() call today diminishes the point of using devm
variant of it. Tomorrow it may even leak something. Add the missed
check.
Fixes: 7828b7bbbf20 ("gpio: add sloppy logic analyzer using polling")
Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
drivers/gpio/gpio-sloppy-logic-analyzer.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/gpio/gpio-sloppy-logic-analyzer.c b/drivers/gpio/gpio-sloppy-logic-analyzer.c
index 64f2ca4a72b2..8cf3b171c599 100644
--- a/drivers/gpio/gpio-sloppy-logic-analyzer.c
+++ b/drivers/gpio/gpio-sloppy-logic-analyzer.c
@@ -234,7 +234,9 @@ static int gpio_la_poll_probe(struct platform_device *pdev)
if (!priv)
return -ENOMEM;
- devm_mutex_init(dev, &priv->blob_lock);
+ ret = devm_mutex_init(dev, &priv->blob_lock);
+ if (ret)
+ return ret;
fops_buf_size_set(priv, GPIO_LA_DEFAULT_BUF_SIZE);
--
2.43.0.rc1.1336.g36b5255a03ac
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: (subset) [PATCH v2 0/2] gpio: Check for error from devm_mutex_init()
2024-10-30 17:36 [PATCH v2 0/2] gpio: Check for error from devm_mutex_init() Andy Shevchenko
2024-10-30 17:36 ` [PATCH v2 1/2] gpio: mpsse: Check for error code from devm_mutex_init() call Andy Shevchenko
2024-10-30 17:36 ` [PATCH v2 2/2] gpio: sloppy-logic-analyzer: " Andy Shevchenko
@ 2024-10-31 12:47 ` Bartosz Golaszewski
2024-10-31 12:48 ` Bartosz Golaszewski
3 siblings, 0 replies; 5+ messages in thread
From: Bartosz Golaszewski @ 2024-10-31 12:47 UTC (permalink / raw)
To: Mary Strodl, Wolfram Sang, linux-gpio, linux-kernel,
Andy Shevchenko
Cc: Bartosz Golaszewski, Linus Walleij, Bartosz Golaszewski
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
On Wed, 30 Oct 2024 19:36:50 +0200, Andy Shevchenko wrote:
> Ignoring error checking from devm calls is a bad practice in general.
> While not critical today, it may become a problem tomorrow.
> Fix this for devm_mutex_init().
>
> In v2:
> - fixed obvious typo (Mary)
> - collected tags (Mary, Wolfram)
>
> [...]
Applied, thanks!
[1/2] gpio: mpsse: Check for error code from devm_mutex_init() call
commit: 5e3eedf55f13ef20ff475eacac30d1e6f91641da
Best regards,
--
Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: (subset) [PATCH v2 0/2] gpio: Check for error from devm_mutex_init()
2024-10-30 17:36 [PATCH v2 0/2] gpio: Check for error from devm_mutex_init() Andy Shevchenko
` (2 preceding siblings ...)
2024-10-31 12:47 ` (subset) [PATCH v2 0/2] gpio: Check for error from devm_mutex_init() Bartosz Golaszewski
@ 2024-10-31 12:48 ` Bartosz Golaszewski
3 siblings, 0 replies; 5+ messages in thread
From: Bartosz Golaszewski @ 2024-10-31 12:48 UTC (permalink / raw)
To: Mary Strodl, Wolfram Sang, linux-gpio, linux-kernel,
Andy Shevchenko
Cc: Bartosz Golaszewski, Linus Walleij, Bartosz Golaszewski
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
On Wed, 30 Oct 2024 19:36:50 +0200, Andy Shevchenko wrote:
> Ignoring error checking from devm calls is a bad practice in general.
> While not critical today, it may become a problem tomorrow.
> Fix this for devm_mutex_init().
>
> In v2:
> - fixed obvious typo (Mary)
> - collected tags (Mary, Wolfram)
>
> [...]
Applied, thanks!
[2/2] gpio: sloppy-logic-analyzer: Check for error code from devm_mutex_init() call
commit: 90bad749858cf88d80af7c2b23f86db4f7ad61c2
Best regards,
--
Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-10-31 12:48 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-30 17:36 [PATCH v2 0/2] gpio: Check for error from devm_mutex_init() Andy Shevchenko
2024-10-30 17:36 ` [PATCH v2 1/2] gpio: mpsse: Check for error code from devm_mutex_init() call Andy Shevchenko
2024-10-30 17:36 ` [PATCH v2 2/2] gpio: sloppy-logic-analyzer: " Andy Shevchenko
2024-10-31 12:47 ` (subset) [PATCH v2 0/2] gpio: Check for error from devm_mutex_init() Bartosz Golaszewski
2024-10-31 12:48 ` Bartosz Golaszewski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).