From: Arend van Spriel <arend.vanspriel@broadcom.com>
To: "Stefan Dösinger" <stefan@codeweavers.com>,
linux-wireless@vger.kernel.org
Subject: Re: [PATCH] wifi: brcmfmac: Check the return value of of_property_read_string_index
Date: Mon, 6 Jan 2025 12:02:17 +0100 [thread overview]
Message-ID: <058aba76-817c-480a-9404-38b030325890@broadcom.com> (raw)
In-Reply-To: <20250106103749.5764-1-stefan@codeweavers.com>
On 1/6/2025 11:37 AM, Stefan Dösinger wrote:
> Somewhen between 6.10 and 6.11 the driver started to crash on my
> MacBookPro14,3. The property doesn't exist and 'tmp' remains
> uninitialized, so we pass a random pointer to devm_kstrdup().
By the looks of it this is an intel-based platform. Is that correct? So
does it have a devicetree? I would expect the root node find to fail,
but apparently is does not. Strange though that root node does not have
a compatible property. Anyway, the analysis looks sane so ...
minor remark below.
Acked-by: Arend van Spriel
> Signed-off-by: Stefan Dösinger <stefan@codeweavers.com>
>
[...]
> ---
> drivers/net/wireless/broadcom/brcm80211/brcmfmac/of.c | 8 +++++---
> 1 file changed, 5 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/of.c b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/of.c
> index c1f18e2fe540..ee589a7b4f4f 100644
> --- a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/of.c
> +++ b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/of.c
> @@ -99,13 +99,15 @@ int brcmf_of_probe(struct device *dev, enum brcmf_bus_type bus_type,
> /* Set board-type to the first string of the machine compatible prop */
> root = of_find_node_by_path("/");
> if (root && err) {
> - char *board_type;
> + char *board_type = NULL;
> const char *tmp;
>
> - of_property_read_string_index(root, "compatible", 0, &tmp);
> + err = of_property_read_string_index(root, "compatible", 0, &tmp);
>
> /* get rid of '/' in the compatible string to be able to find the FW */
> - board_type = devm_kstrdup(dev, tmp, GFP_KERNEL);
No need to use 'err'. You can directly do
of_property_read_string_index() in the if statement below.
> + if (!err)
> + board_type = devm_kstrdup(dev, tmp, GFP_KERNEL);
> +
> if (!board_type) {
> of_node_put(root);
> return 0;
next prev parent reply other threads:[~2025-01-06 11:02 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-06 10:37 [PATCH] wifi: brcmfmac: Check the return value of of_property_read_string_index Stefan Dösinger
2025-01-06 11:02 ` Arend van Spriel [this message]
2025-01-06 11:22 ` Stefan Dösinger
2025-01-06 18:53 ` Stefan Dösinger
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=058aba76-817c-480a-9404-38b030325890@broadcom.com \
--to=arend.vanspriel@broadcom.com \
--cc=linux-wireless@vger.kernel.org \
--cc=stefan@codeweavers.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;
as well as URLs for NNTP newsgroup(s).