From: Andrew Davis <afd@ti.com>
To: "Thomas Weißschuh" <linux@weissschuh.net>,
"Peter Zijlstra" <peterz@infradead.org>,
"Ingo Molnar" <mingo@redhat.com>,
"Waiman Long" <longman@redhat.com>,
"Boqun Feng" <boqun.feng@gmail.com>,
"Vicentiu Galanopulo" <vicentiu.galanopulo@remote-tech.co.uk>,
"Will Deacon" <will@kernel.org>, "Han Xu" <han.xu@nxp.com>,
"Haibo Chen" <haibo.chen@nxp.com>,
"Yogesh Gaur" <yogeshgaur.83@gmail.com>,
"Mark Brown" <broonie@kernel.org>, "Lee Jones" <lee@kernel.org>,
"Pavel Machek" <pavel@kernel.org>
Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
<linux-kernel@vger.kernel.org>,
Bartosz Golaszewski <brgl@bgdev.pl>,
Bartosz Golaszewski <bartosz.golaszewski@linaro.org>,
<linux-spi@vger.kernel.org>, <imx@lists.linux.dev>,
<linux-leds@vger.kernel.org>
Subject: Re: [PATCH v6 2/3] leds: lp8860: Check return value of devm_mutex_init()
Date: Mon, 9 Jun 2025 16:11:49 -0500 [thread overview]
Message-ID: <1983260a-4362-44ca-af1a-0e20d2fee6db@ti.com> (raw)
In-Reply-To: <20250609-must_check-devm_mutex_init-v6-2-9540d5df9704@weissschuh.net>
On 6/9/25 3:38 PM, Thomas Weißschuh wrote:
> 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: 87a59548af95 ("leds: lp8860: Use new mutex guards to cleanup function exits")
> Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
> ---
> drivers/leds/leds-lp8860.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/leds/leds-lp8860.c b/drivers/leds/leds-lp8860.c
> index 52b97c9f2a03567aa12d4f63a951593a5e7017d5..0962c00c215a11f555a7878a3b65824b5219a1fa 100644
> --- a/drivers/leds/leds-lp8860.c
> +++ b/drivers/leds/leds-lp8860.c
> @@ -307,7 +307,9 @@ static int lp8860_probe(struct i2c_client *client)
> led->client = client;
> led->led_dev.brightness_set_blocking = lp8860_brightness_set;
>
> - devm_mutex_init(&client->dev, &led->lock);
> + ret = devm_mutex_init(&client->dev, &led->lock);
> + if (ret)
> + return dev_err_probe(&client->dev, ret, "Failed to initialize lock\n");
I don't think the lock initialization can actually fail, if anything ever breaks
it will be the devm allocation, which is a ENOMEM situation, so probably not worth
printing anything. Either way is fine for __must_check sake so,
Acked-by: Andrew Davis <afd@ti.com>
>
> led->regmap = devm_regmap_init_i2c(client, &lp8860_regmap_config);
> if (IS_ERR(led->regmap)) {
>
next prev parent reply other threads:[~2025-06-09 21:12 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-09 20:38 [PATCH v6 0/3] locking/mutex: Mark devm_mutex_init() as __must_check Thomas Weißschuh
2025-06-09 20:38 ` [PATCH v6 1/3] spi: spi-nxp-fspi: check return value of devm_mutex_init() Thomas Weißschuh
2025-06-09 20:59 ` Mark Brown
2025-06-10 9:57 ` Andy Shevchenko
2025-06-10 11:46 ` Mark Brown
2025-06-11 8:33 ` Andy Shevchenko
2025-06-09 20:38 ` [PATCH v6 2/3] leds: lp8860: Check " Thomas Weißschuh
2025-06-09 21:11 ` Andrew Davis [this message]
2025-06-09 20:38 ` [PATCH v6 3/3] locking/mutex: Mark devm_mutex_init() as __must_check Thomas Weißschuh
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1983260a-4362-44ca-af1a-0e20d2fee6db@ti.com \
--to=afd@ti.com \
--cc=andriy.shevchenko@linux.intel.com \
--cc=bartosz.golaszewski@linaro.org \
--cc=boqun.feng@gmail.com \
--cc=brgl@bgdev.pl \
--cc=broonie@kernel.org \
--cc=haibo.chen@nxp.com \
--cc=han.xu@nxp.com \
--cc=imx@lists.linux.dev \
--cc=lee@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-leds@vger.kernel.org \
--cc=linux-spi@vger.kernel.org \
--cc=linux@weissschuh.net \
--cc=longman@redhat.com \
--cc=mingo@redhat.com \
--cc=pavel@kernel.org \
--cc=peterz@infradead.org \
--cc=vicentiu.galanopulo@remote-tech.co.uk \
--cc=will@kernel.org \
--cc=yogeshgaur.83@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox