From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id A1F4C136351; Wed, 28 Jan 2026 05:47:51 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769579271; cv=none; b=N+/8QDokgpBMnh6xuzlou2SP/23wxWwhF+YV0Qnxa5uUZCYEVI2Mw32g2LXxlpYKo4xfSfrPiJcqzr+zv1cUJgpgw4HmfJkjNSCpGp7/xB+Fq+6+1uc/JMlrhxEZ2us3ZWtdAMhG1Etag5kYAzu2knh0yPOEvJ3rI2+OR4u/ZTo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769579271; c=relaxed/simple; bh=nn8J0fTe8eO8RxDRcoCwqPLIJnx2dWT1IczIeSUPTUc=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=gK2YWRoX8Q+yxkOmnggUYy3kuGUkNLY6wG8afGig24QgMp3nW8n+SJ/NDLNFnH6oeZyhOBRflg133g4awI29m6T87kH/ULUB5r7tb/NrHUqhKKd0A3D1gQSIF7NjmiHz/b2ItQ/d0GOsrlQHV2OksUqPz20tgi7o0YsTimM0U3g= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ktUD6Zjg; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="ktUD6Zjg" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A9A74C4CEF1; Wed, 28 Jan 2026 05:47:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1769579271; bh=nn8J0fTe8eO8RxDRcoCwqPLIJnx2dWT1IczIeSUPTUc=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ktUD6ZjgnmOIDGMEiIOPszX4E+0j5yjMO+8No5JAGcT9SjvTTQfHoKMqsFDz2jc3n +xxixDOfLTUA0hrknfrlNjJfNRi7VCo5OG4in2wXh7PYUv2MYZU8gTXf2iicYoshpM Z819y4IJtIuuqjhL5By5QBHmDUIpjfWD61cWDx0U= Date: Wed, 28 Jan 2026 06:47:47 +0100 From: Greg KH To: Xingjing Deng Cc: srini@kernel.org, amahesh@qti.qualcomm.com, arnd@arndb.de, dri-devel@lists.freedesktop.org, linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org, Xingjing Deng , stable@vger.kernel.org Subject: Re: [PATCH v6] misc: fastrpc: check qcom_scm_assign_mem() return in rpmsg_probe Message-ID: <2026012814-ignition-stiffly-cd0d@gregkh> References: <20260128033454.2614886-1-xjdeng@buaa.edu.cn> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260128033454.2614886-1-xjdeng@buaa.edu.cn> On Wed, Jan 28, 2026 at 11:34:54AM +0800, Xingjing Deng wrote: > In the SDSP probe path, qcom_scm_assign_mem() is used to assign the > reserved memory to the configured VMIDs, but its return value was not checked. > > Fail the probe if the SCM call fails to avoid continuing with an > unexpected/incorrect memory permission configuration. > > This issue was detected by a private static analysis tool. > No actual hardware testing was performed as the issue is purely > code-level and verified via static analysis. > > Fixes: c3c0363bc72d4 ("misc: fastrpc: support complete DMA pool access to the DSP") > Cc: stable@vger.kernel.org # 6.11-rc1 > Signed-off-by: Xingjing Deng > --- > v6: > - Add description of the detection tool. > - Link to v5: https://lore.kernel.org/linux-arm-msm/20260117140351.875511-1-xjdeng@buaa.edu.cn/T/#u > > v5: > - Squash the functional change and indentation fix into a single patch. > - Link to v4: https://lore.kernel.org/linux-arm-msm/2026011637-statute-showy-2c3f@gregkh/T/#t > > v4: > - Format the indentation > - Link to v3: https://lore.kernel.org/linux-arm-msm/20260113084352.72itrloj5w7qb5o3@hu-mojha-hyd.qualcomm.com/T/#t > > v3: > - Add missing linux-kernel@vger.kernel.org to cc list. > - Standarlize changelog placement/format. > - Link to v2: https://lore.kernel.org/linux-arm-msm/20260113063618.e2ke47gy3hnfi67e@hu-mojha-hyd.qualcomm.com/T/#t > > v2: > - Add Fixes: and Cc: stable tags. > - Link to v1: https://lore.kernel.org/linux-arm-msm/20260113022550.4029635-1-xjdeng@buaa.edu.cn/T/#u > --- > drivers/misc/fastrpc.c | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git a/drivers/misc/fastrpc.c b/drivers/misc/fastrpc.c > index ee652ef01534..8bac2216cb20 100644 > --- a/drivers/misc/fastrpc.c > +++ b/drivers/misc/fastrpc.c > @@ -2337,8 +2337,11 @@ static int fastrpc_rpmsg_probe(struct rpmsg_device *rpdev) > if (!err) { > src_perms = BIT(QCOM_SCM_VMID_HLOS); > > - qcom_scm_assign_mem(res.start, resource_size(&res), &src_perms, > + err = qcom_scm_assign_mem(res.start, resource_size(&res), &src_perms, > data->vmperms, data->vmcount); > + if (err) { > + goto err_free_data; > + } > } > > } > -- > 2.25.1 > > Always run checkpatch.pl on your changes so that you don't get grumpy maintainers asking why you didn't run checkpatch.pl on your change :) thanks, greg k-h