* [PATCH] bus: mhi: host: free buffer on error in mhi_alloc_bhie_table
@ 2024-02-07 6:51 Fedor Pchelkin
2024-02-07 10:16 ` Greg Kroah-Hartman
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Fedor Pchelkin @ 2024-02-07 6:51 UTC (permalink / raw)
To: Manivannan Sadhasivam
Cc: Fedor Pchelkin, Jeffrey Hugo, Kalle Valo, Carl Vanderlip,
Sujeev Dias, Greg Kroah-Hartman, Siddartha Mohanadoss, mhi,
linux-arm-msm, linux-kernel, Alexey Khoroshilov, lvc-project
img_info->mhi_buf should be freed on error path in mhi_alloc_bhie_table().
This error case is rare but still needs to be fixed.
Found by Linux Verification Center (linuxtesting.org).
Fixes: 3000f85b8f47 ("bus: mhi: core: Add support for basic PM operations")
Signed-off-by: Fedor Pchelkin <pchelkin@ispras.ru>
---
drivers/bus/mhi/host/boot.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/bus/mhi/host/boot.c b/drivers/bus/mhi/host/boot.c
index edc0ec5a0933..738dcd11b66f 100644
--- a/drivers/bus/mhi/host/boot.c
+++ b/drivers/bus/mhi/host/boot.c
@@ -357,6 +357,7 @@ int mhi_alloc_bhie_table(struct mhi_controller *mhi_cntrl,
for (--i, --mhi_buf; i >= 0; i--, mhi_buf--)
dma_free_coherent(mhi_cntrl->cntrl_dev, mhi_buf->len,
mhi_buf->buf, mhi_buf->dma_addr);
+ kfree(img_info->mhi_buf);
error_alloc_mhi_buf:
kfree(img_info);
--
2.39.2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] bus: mhi: host: free buffer on error in mhi_alloc_bhie_table
2024-02-07 6:51 [PATCH] bus: mhi: host: free buffer on error in mhi_alloc_bhie_table Fedor Pchelkin
@ 2024-02-07 10:16 ` Greg Kroah-Hartman
2024-02-07 13:40 ` [PATCH v2] " Fedor Pchelkin
2024-10-06 18:05 ` [PATCH] " Manivannan Sadhasivam
2024-10-06 18:06 ` Manivannan Sadhasivam
2 siblings, 1 reply; 7+ messages in thread
From: Greg Kroah-Hartman @ 2024-02-07 10:16 UTC (permalink / raw)
To: Fedor Pchelkin
Cc: Manivannan Sadhasivam, Jeffrey Hugo, Kalle Valo, Carl Vanderlip,
Sujeev Dias, Siddartha Mohanadoss, mhi, linux-arm-msm,
linux-kernel, Alexey Khoroshilov, lvc-project
On Wed, Feb 07, 2024 at 09:51:36AM +0300, Fedor Pchelkin wrote:
> img_info->mhi_buf should be freed on error path in mhi_alloc_bhie_table().
> This error case is rare but still needs to be fixed.
>
> Found by Linux Verification Center (linuxtesting.org).
>
> Fixes: 3000f85b8f47 ("bus: mhi: core: Add support for basic PM operations")
> Signed-off-by: Fedor Pchelkin <pchelkin@ispras.ru>
> ---
> drivers/bus/mhi/host/boot.c | 1 +
> 1 file changed, 1 insertion(+)
Hi,
This is the friendly patch-bot of Greg Kroah-Hartman. You have sent him
a patch that has triggered this response. He used to manually respond
to these common problems, but in order to save his sanity (he kept
writing the same thing over and over, yet to different people), I was
created. Hopefully you will not take offence and will fix the problem
in your patch and resubmit it so that it can be accepted into the Linux
kernel tree.
You are receiving this message because of the following common error(s)
as indicated below:
- You have marked a patch with a "Fixes:" tag for a commit that is in an
older released kernel, yet you do not have a cc: stable line in the
signed-off-by area at all, which means that the patch will not be
applied to any older kernel releases. To properly fix this, please
follow the documented rules in the
Documentation/process/stable-kernel-rules.rst file for how to resolve
this.
If you wish to discuss this problem further, or you have questions about
how to resolve this issue, please feel free to respond to this email and
Greg will reply once he has dug out from the pending patches received
from other developers.
thanks,
greg k-h's patch email bot
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v2] bus: mhi: host: free buffer on error in mhi_alloc_bhie_table
2024-02-07 10:16 ` Greg Kroah-Hartman
@ 2024-02-07 13:40 ` Fedor Pchelkin
2024-02-07 18:09 ` Jeffrey Hugo
0 siblings, 1 reply; 7+ messages in thread
From: Fedor Pchelkin @ 2024-02-07 13:40 UTC (permalink / raw)
To: Manivannan Sadhasivam
Cc: Fedor Pchelkin, Jeffrey Hugo, Kalle Valo, Carl Vanderlip,
Sujeev Dias, Greg Kroah-Hartman, Siddartha Mohanadoss, mhi,
linux-arm-msm, linux-kernel, Alexey Khoroshilov, lvc-project,
stable
img_info->mhi_buf should be freed on error path in mhi_alloc_bhie_table().
This error case is rare but still needs to be fixed.
Found by Linux Verification Center (linuxtesting.org).
Fixes: 3000f85b8f47 ("bus: mhi: core: Add support for basic PM operations")
Cc: stable@vger.kernel.org
Signed-off-by: Fedor Pchelkin <pchelkin@ispras.ru>
---
v2: add missing Cc: stable, as Greg Kroah-Hartman's bot reported
drivers/bus/mhi/host/boot.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/bus/mhi/host/boot.c b/drivers/bus/mhi/host/boot.c
index edc0ec5a0933..738dcd11b66f 100644
--- a/drivers/bus/mhi/host/boot.c
+++ b/drivers/bus/mhi/host/boot.c
@@ -357,6 +357,7 @@ int mhi_alloc_bhie_table(struct mhi_controller *mhi_cntrl,
for (--i, --mhi_buf; i >= 0; i--, mhi_buf--)
dma_free_coherent(mhi_cntrl->cntrl_dev, mhi_buf->len,
mhi_buf->buf, mhi_buf->dma_addr);
+ kfree(img_info->mhi_buf);
error_alloc_mhi_buf:
kfree(img_info);
--
2.39.2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v2] bus: mhi: host: free buffer on error in mhi_alloc_bhie_table
2024-02-07 13:40 ` [PATCH v2] " Fedor Pchelkin
@ 2024-02-07 18:09 ` Jeffrey Hugo
2024-10-03 11:34 ` Fedor Pchelkin
0 siblings, 1 reply; 7+ messages in thread
From: Jeffrey Hugo @ 2024-02-07 18:09 UTC (permalink / raw)
To: Fedor Pchelkin, Manivannan Sadhasivam
Cc: Kalle Valo, Carl Vanderlip, Sujeev Dias, Greg Kroah-Hartman,
Siddartha Mohanadoss, mhi, linux-arm-msm, linux-kernel,
Alexey Khoroshilov, lvc-project, stable
On 2/7/2024 6:40 AM, Fedor Pchelkin wrote:
> img_info->mhi_buf should be freed on error path in mhi_alloc_bhie_table().
> This error case is rare but still needs to be fixed.
>
> Found by Linux Verification Center (linuxtesting.org).
>
> Fixes: 3000f85b8f47 ("bus: mhi: core: Add support for basic PM operations")
> Cc: stable@vger.kernel.org
> Signed-off-by: Fedor Pchelkin <pchelkin@ispras.ru>
Reviewed-by: Jeffrey Hugo <quic_jhugo@quicinc.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v2] bus: mhi: host: free buffer on error in mhi_alloc_bhie_table
2024-02-07 18:09 ` Jeffrey Hugo
@ 2024-10-03 11:34 ` Fedor Pchelkin
0 siblings, 0 replies; 7+ messages in thread
From: Fedor Pchelkin @ 2024-10-03 11:34 UTC (permalink / raw)
To: Manivannan Sadhasivam
Cc: Jeffrey Hugo, Kalle Valo, Carl Vanderlip, Sujeev Dias,
Greg Kroah-Hartman, Siddartha Mohanadoss, mhi, linux-arm-msm,
linux-kernel, Alexey Khoroshilov, lvc-project, stable
On Wed, 07. Feb 11:09, Jeffrey Hugo wrote:
> On 2/7/2024 6:40 AM, Fedor Pchelkin wrote:
> > img_info->mhi_buf should be freed on error path in mhi_alloc_bhie_table().
> > This error case is rare but still needs to be fixed.
> >
> > Found by Linux Verification Center (linuxtesting.org).
> >
> > Fixes: 3000f85b8f47 ("bus: mhi: core: Add support for basic PM operations")
> > Cc: stable@vger.kernel.org
> > Signed-off-by: Fedor Pchelkin <pchelkin@ispras.ru>
>
> Reviewed-by: Jeffrey Hugo <quic_jhugo@quicinc.com>
Seems the patch is still not applied.
A gentle ping.
Thanks!
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] bus: mhi: host: free buffer on error in mhi_alloc_bhie_table
2024-02-07 6:51 [PATCH] bus: mhi: host: free buffer on error in mhi_alloc_bhie_table Fedor Pchelkin
2024-02-07 10:16 ` Greg Kroah-Hartman
@ 2024-10-06 18:05 ` Manivannan Sadhasivam
2024-10-06 18:06 ` Manivannan Sadhasivam
2 siblings, 0 replies; 7+ messages in thread
From: Manivannan Sadhasivam @ 2024-10-06 18:05 UTC (permalink / raw)
To: Fedor Pchelkin
Cc: Jeffrey Hugo, Kalle Valo, Carl Vanderlip, Sujeev Dias,
Greg Kroah-Hartman, Siddartha Mohanadoss, mhi, linux-arm-msm,
linux-kernel, Alexey Khoroshilov, lvc-project
On Wed, Feb 07, 2024 at 09:51:36AM +0300, Fedor Pchelkin wrote:
> img_info->mhi_buf should be freed on error path in mhi_alloc_bhie_table().
> This error case is rare but still needs to be fixed.
>
> Found by Linux Verification Center (linuxtesting.org).
>
> Fixes: 3000f85b8f47 ("bus: mhi: core: Add support for basic PM operations")
> Signed-off-by: Fedor Pchelkin <pchelkin@ispras.ru>
Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
- Mani
> ---
> drivers/bus/mhi/host/boot.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/bus/mhi/host/boot.c b/drivers/bus/mhi/host/boot.c
> index edc0ec5a0933..738dcd11b66f 100644
> --- a/drivers/bus/mhi/host/boot.c
> +++ b/drivers/bus/mhi/host/boot.c
> @@ -357,6 +357,7 @@ int mhi_alloc_bhie_table(struct mhi_controller *mhi_cntrl,
> for (--i, --mhi_buf; i >= 0; i--, mhi_buf--)
> dma_free_coherent(mhi_cntrl->cntrl_dev, mhi_buf->len,
> mhi_buf->buf, mhi_buf->dma_addr);
> + kfree(img_info->mhi_buf);
>
> error_alloc_mhi_buf:
> kfree(img_info);
> --
> 2.39.2
>
--
மணிவண்ணன் சதாசிவம்
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] bus: mhi: host: free buffer on error in mhi_alloc_bhie_table
2024-02-07 6:51 [PATCH] bus: mhi: host: free buffer on error in mhi_alloc_bhie_table Fedor Pchelkin
2024-02-07 10:16 ` Greg Kroah-Hartman
2024-10-06 18:05 ` [PATCH] " Manivannan Sadhasivam
@ 2024-10-06 18:06 ` Manivannan Sadhasivam
2 siblings, 0 replies; 7+ messages in thread
From: Manivannan Sadhasivam @ 2024-10-06 18:06 UTC (permalink / raw)
To: Fedor Pchelkin
Cc: Jeffrey Hugo, Kalle Valo, Carl Vanderlip, Sujeev Dias,
Greg Kroah-Hartman, Siddartha Mohanadoss, mhi, linux-arm-msm,
linux-kernel, Alexey Khoroshilov, lvc-project
On Wed, Feb 07, 2024 at 09:51:36AM +0300, Fedor Pchelkin wrote:
> img_info->mhi_buf should be freed on error path in mhi_alloc_bhie_table().
> This error case is rare but still needs to be fixed.
>
> Found by Linux Verification Center (linuxtesting.org).
>
> Fixes: 3000f85b8f47 ("bus: mhi: core: Add support for basic PM operations")
> Signed-off-by: Fedor Pchelkin <pchelkin@ispras.ru>
Applied to mhi-next!
- Mani
> ---
> drivers/bus/mhi/host/boot.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/bus/mhi/host/boot.c b/drivers/bus/mhi/host/boot.c
> index edc0ec5a0933..738dcd11b66f 100644
> --- a/drivers/bus/mhi/host/boot.c
> +++ b/drivers/bus/mhi/host/boot.c
> @@ -357,6 +357,7 @@ int mhi_alloc_bhie_table(struct mhi_controller *mhi_cntrl,
> for (--i, --mhi_buf; i >= 0; i--, mhi_buf--)
> dma_free_coherent(mhi_cntrl->cntrl_dev, mhi_buf->len,
> mhi_buf->buf, mhi_buf->dma_addr);
> + kfree(img_info->mhi_buf);
>
> error_alloc_mhi_buf:
> kfree(img_info);
> --
> 2.39.2
>
--
மணிவண்ணன் சதாசிவம்
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-10-06 18:06 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-07 6:51 [PATCH] bus: mhi: host: free buffer on error in mhi_alloc_bhie_table Fedor Pchelkin
2024-02-07 10:16 ` Greg Kroah-Hartman
2024-02-07 13:40 ` [PATCH v2] " Fedor Pchelkin
2024-02-07 18:09 ` Jeffrey Hugo
2024-10-03 11:34 ` Fedor Pchelkin
2024-10-06 18:05 ` [PATCH] " Manivannan Sadhasivam
2024-10-06 18:06 ` Manivannan Sadhasivam
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox