From: Sergey Shtylyov <s.shtylyov@omp.ru>
To: Ma Ke <make24@iscas.ac.cn>, <linus.walleij@linaro.org>,
<mcoquelin.stm32@gmail.com>, <alexandre.torgue@foss.st.com>,
<bartosz.golaszewski@linaro.org>, <patrice.chotard@foss.st.com>,
<antonio.borneo@foss.st.com>, <peng.fan@nxp.com>,
<valentin.caron@foss.st.com>, <akpm@linux-foundation.org>
Cc: <linux-gpio@vger.kernel.org>,
<linux-stm32@st-md-mailman.stormreply.com>,
<linux-arm-kernel@lists.infradead.org>,
<linux-kernel@vger.kernel.org>, <stable@vger.kernel.org>
Subject: Re: [PATCH] pinctrl: stm32: check devm_kasprintf() returned value
Date: Thu, 5 Sep 2024 17:50:28 +0300 [thread overview]
Message-ID: <03cf48b6-58b4-eeaa-41bf-5dda61ea37ac@omp.ru> (raw)
In-Reply-To: <20240905020244.355474-1-make24@iscas.ac.cn>
On 9/5/24 5:02 AM, Ma Ke wrote:
> devm_kasprintf() can return a NULL pointer on failure but this returned
> value is not checked. Fix this lack and check the returned value.
>
> Found by code review.
>
> Cc: stable@vger.kernel.org
> Fixes: 32c170ff15b0 ("pinctrl: stm32: set default gpio line names using pin names")
> Signed-off-by: Ma Ke <make24@iscas.ac.cn>
> ---
> drivers/pinctrl/stm32/pinctrl-stm32.c | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/pinctrl/stm32/pinctrl-stm32.c b/drivers/pinctrl/stm32/pinctrl-stm32.c
> index a8673739871d..53306d939d14 100644
> --- a/drivers/pinctrl/stm32/pinctrl-stm32.c
> +++ b/drivers/pinctrl/stm32/pinctrl-stm32.c
> @@ -1374,8 +1374,13 @@ static int stm32_gpiolib_register_bank(struct stm32_pinctrl *pctl, struct fwnode
>
> for (i = 0; i < npins; i++) {
> stm32_pin = stm32_pctrl_get_desc_pin_from_gpio(pctl, bank, i);
> - if (stm32_pin && stm32_pin->pin.name)
> + if (stm32_pin && stm32_pin->pin.name) {
> names[i] = devm_kasprintf(dev, GFP_KERNEL, "%s", stm32_pin->pin.name);
> + if (!name[i]) {
> + err = -ENOMEM;
> + goto err_clk;
> + }
> + }
> else
> names[i] = NULL;
That doesn't comply with the kernel coding style -- it now needs to be:
} else {
names[i] = NULL;
}
[...]
MBR, Sergey
next prev parent reply other threads:[~2024-09-05 14:50 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-05 2:02 [PATCH] pinctrl: stm32: check devm_kasprintf() returned value Ma Ke
2024-09-05 14:50 ` Sergey Shtylyov [this message]
2024-09-05 20:53 ` kernel test robot
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=03cf48b6-58b4-eeaa-41bf-5dda61ea37ac@omp.ru \
--to=s.shtylyov@omp.ru \
--cc=akpm@linux-foundation.org \
--cc=alexandre.torgue@foss.st.com \
--cc=antonio.borneo@foss.st.com \
--cc=bartosz.golaszewski@linaro.org \
--cc=linus.walleij@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-stm32@st-md-mailman.stormreply.com \
--cc=make24@iscas.ac.cn \
--cc=mcoquelin.stm32@gmail.com \
--cc=patrice.chotard@foss.st.com \
--cc=peng.fan@nxp.com \
--cc=stable@vger.kernel.org \
--cc=valentin.caron@foss.st.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