From: Maxwell Doose <m32285159@gmail.com>
To: Peter Rosin <peda@lysator.liu.se>,
linux-kernel@vger.kernel.org (open list)
Subject: Re: [PATCH v3] mux: core: Replace manual put_device() with __free(put_device)
Date: Tue, 2 Jun 2026 11:51:24 -0500 [thread overview]
Message-ID: <20260602115124.4c41bcc2@linuxescape> (raw)
In-Reply-To: <20260602164407.343565-1-m32285159@gmail.com>
On Tue, 2 Jun 2026 11:44:07 -0500
Maxwell Doose <m32285159@gmail.com> wrote:
> The current code for returning on failure in mux_get() uses manual
> put_device() calls. Refactor and replace them with a new variable for
> the pointer to the underlying device and __free(put_device).
>
> Signed-off-by: Maxwell Doose <m32285159@gmail.com>
> ---
> drivers/mux/core.c | 7 ++++---
> 1 file changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/mux/core.c b/drivers/mux/core.c
> index 23538de2c91b..2c8d380fd81a 100644
> --- a/drivers/mux/core.c
> +++ b/drivers/mux/core.c
> @@ -9,6 +9,7 @@
>
> #define pr_fmt(fmt) "mux-core: " fmt
>
> +#include <linux/cleanup.h>
> #include <linux/delay.h>
> #include <linux/device.h>
> #include <linux/err.h>
> @@ -586,13 +587,13 @@ static struct mux_control *mux_get(struct device *dev, const char *mux_name,
> if (!mux_chip)
> return ERR_PTR(-EPROBE_DEFER);
>
> + struct device *mux_dev __free(put_device) = &mux_chip->dev;
> controller = 0;
> if (state) {
> if (args.args_count > 2 || args.args_count == 0 ||
> (args.args_count < 2 && mux_chip->controllers > 1)) {
> dev_err(dev, "%pOF: wrong #mux-state-cells for %pOF\n",
> np, args.np);
> - put_device(&mux_chip->dev);
> return ERR_PTR(-EINVAL);
> }
>
> @@ -608,7 +609,6 @@ static struct mux_control *mux_get(struct device *dev, const char *mux_name,
> (!args.args_count && mux_chip->controllers > 1)) {
> dev_err(dev, "%pOF: wrong #mux-control-cells for %pOF\n",
> np, args.np);
> - put_device(&mux_chip->dev);
> return ERR_PTR(-EINVAL);
> }
>
> @@ -619,10 +619,11 @@ static struct mux_control *mux_get(struct device *dev, const char *mux_name,
> if (controller >= mux_chip->controllers) {
> dev_err(dev, "%pOF: bad mux controller %u specified in %pOF\n",
> np, controller, args.np);
> - put_device(&mux_chip->dev);
> return ERR_PTR(-EINVAL);
> }
>
> + struct device *prev_mux_dev __maybe_unused = no_free_ptr(mux_dev);
> +
> return &mux_chip->mux[controller];
> }
>
I forgot the changelog :(
v2:
- Add explicit cleanup.h header.
- Add no_free_ptr() at the end of the happy path to prevent
accidentially calling put_device() where it shouldn't.
v3:
- Fix compiler assertion where the return value of no_free_ptr() was
ignored.
--
best regards,
max
next prev parent reply other threads:[~2026-06-02 16:51 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-02 16:44 [PATCH v3] mux: core: Replace manual put_device() with __free(put_device) Maxwell Doose
2026-06-02 16:51 ` Maxwell Doose [this message]
2026-06-02 20:37 ` Peter Rosin
2026-06-02 20:49 ` Maxwell Doose
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=20260602115124.4c41bcc2@linuxescape \
--to=m32285159@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=peda@lysator.liu.se \
/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