From: Alex Elder <elder@ieee.org>
To: Haoxiang Li <haoxiang_li2024@163.com>,
elder@kernel.org, andrew+netdev@lunn.ch, davem@davemloft.net,
edumazet@google.com, kuba@kernel.org, pabeni@redhat.com
Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
stable@vger.kernel.org
Subject: Re: [PATCH] net: ipa: fix SMEM state handle leaks in SMP2P init
Date: Tue, 23 Jun 2026 10:53:49 -0500 [thread overview]
Message-ID: <526c68fd-684d-4593-8c6a-e08aafdada5d@ieee.org> (raw)
In-Reply-To: <20260623031831.1788454-1-haoxiang_li2024@163.com>
On 6/22/26 10:18 PM, Haoxiang Li wrote:
> ipa_smp2p_init() acquires two Qualcomm SMEM state handles with
> qcom_smem_state_get(). However, neither the init error paths
> nor ipa_smp2p_exit() release them.
>
> Use devm_qcom_smem_state_get() for both state handles so the
> references are released automatically when the platform device
> is removed.
>
> Fixes: 530f9216a953 ("soc: qcom: ipa: AP/modem communications")
> Cc: stable@vger.kernel.org
> Signed-off-by: Haoxiang Li <haoxiang_li2024@163.com>
So I guess they were never "put" before?
This looks OK, but I'll just mention that the IPA code
doesn't use devm_*() (managed) interfaces. So it would
be more consistent to just call qcom_smem_state_put()
at the end of ipa_smp2p_exit() for both ipa->enabled_state
and ipa->valid_state.
-Alex
> ---
> drivers/net/ipa/ipa_smp2p.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/net/ipa/ipa_smp2p.c b/drivers/net/ipa/ipa_smp2p.c
> index 2f0ccdd937cc..d8fd56949082 100644
> --- a/drivers/net/ipa/ipa_smp2p.c
> +++ b/drivers/net/ipa/ipa_smp2p.c
> @@ -228,15 +228,15 @@ ipa_smp2p_init(struct ipa *ipa, struct platform_device *pdev, bool modem_init)
> u32 valid_bit;
> int ret;
>
> - valid_state = qcom_smem_state_get(dev, "ipa-clock-enabled-valid",
> - &valid_bit);
> + valid_state = devm_qcom_smem_state_get(dev, "ipa-clock-enabled-valid",
> + &valid_bit);
> if (IS_ERR(valid_state))
> return PTR_ERR(valid_state);
> if (valid_bit >= 32) /* BITS_PER_U32 */
> return -EINVAL;
>
> - enabled_state = qcom_smem_state_get(dev, "ipa-clock-enabled",
> - &enabled_bit);
> + enabled_state = devm_qcom_smem_state_get(dev, "ipa-clock-enabled",
> + &enabled_bit);
> if (IS_ERR(enabled_state))
> return PTR_ERR(enabled_state);
> if (enabled_bit >= 32) /* BITS_PER_U32 */
next prev parent reply other threads:[~2026-06-23 15:53 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-23 3:18 [PATCH] net: ipa: fix SMEM state handle leaks in SMP2P init Haoxiang Li
2026-06-23 15:53 ` Alex Elder [this message]
2026-06-23 21:06 ` Jakub Kicinski
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=526c68fd-684d-4593-8c6a-e08aafdada5d@ieee.org \
--to=elder@ieee.org \
--cc=andrew+netdev@lunn.ch \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=elder@kernel.org \
--cc=haoxiang_li2024@163.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=stable@vger.kernel.org \
/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