From: Suniel Mahesh <sunil.m@techveda.org>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH] drivers: mmc: Avoid memory leak in case of failure
Date: Mon, 25 Sep 2017 16:17:08 +0530 [thread overview]
Message-ID: <f5dee3ff-3120-cb67-5486-69e4bb8cf076@techveda.org> (raw)
In-Reply-To: <0f527c1c-4e01-c8bd-1e86-76ad1693ef16@samsung.com>
On Friday 18 August 2017 01:00 PM, Jaehoon Chung wrote:
> On 08/04/2017 06:34 PM, Suniel Mahesh wrote:
>> On Monday 17 July 2017 04:38 PM, Jaehoon Chung wrote:
>>> On 06/20/2017 01:53 AM, sunil.m at techveda.org wrote:
>>>> From: Suniel Mahesh <sunil.m@techveda.org>
>>>>
>>>> priv pointer should be freed before returning with an error value
>>>> from exynos_dwmci_get_config().
>>>>
>>>> Signed-off-by: Suniel Mahesh <sunil.m@techveda.org>
>>>> Signed-off-by: Raghu Bharadwaj <raghu@techveda.org>
>>>
>>> Applied to u-boot-mmc.
>>
>> Hi, It says the patch has been applied to u-boot-mmc git tree,
>> but I couldn't find it there applied.
>> http://git.denx.de/?p=u-boot/u-boot-mmc.git;a=summary
>>
>> are there any issues with the patch or am I looking at the wrong place ?
>
> Right place..Sorry..i missed it..when i rebased..will re-apply.
> Thanks for pointing out.
Hi,
Just a reminder, please re-apply.
I am rebasing the patch w.r.t latest u-boot source tree and will shortly
send it.
Thanks
suniel
>
> Best Regards,
> Jaehoon Chung
>
>>
>> Thanks
>> suniel
>>
>>>
>>> Best Regards,
>>> Jaehoon Chung
>>>> ---
>>>> drivers/mmc/exynos_dw_mmc.c | 3 +++
>>>> 1 file changed, 3 insertions(+)
>>>>
>>>> diff --git a/drivers/mmc/exynos_dw_mmc.c b/drivers/mmc/exynos_dw_mmc.c
>>>> index 40f7892..84ef2da 100644
>>>> --- a/drivers/mmc/exynos_dw_mmc.c
>>>> +++ b/drivers/mmc/exynos_dw_mmc.c
>>>> @@ -168,6 +168,7 @@ static int exynos_dwmci_get_config(const void *blob, int node,
>>>>
>>>> if (host->dev_index > 4) {
>>>> printf("DWMMC%d: Can't get the dev index\n", host->dev_index);
>>>> + free(priv);
>>>> return -EINVAL;
>>>> }
>>>>
>>>> @@ -178,6 +179,7 @@ static int exynos_dwmci_get_config(const void *blob, int node,
>>>> base = fdtdec_get_addr(blob, node, "reg");
>>>> if (!base) {
>>>> printf("DWMMC%d: Can't get base address\n", host->dev_index);
>>>> + free(priv);
>>>> return -EINVAL;
>>>> }
>>>> host->ioaddr = (void *)base;
>>>> @@ -187,6 +189,7 @@ static int exynos_dwmci_get_config(const void *blob, int node,
>>>> if (err) {
>>>> printf("DWMMC%d: Can't get sdr-timings for devider\n",
>>>> host->dev_index);
>>>> + free(priv);
>>>> return -EINVAL;
>>>> }
>>>>
>>>>
>>>
>>
>>
>>
>>
>
next prev parent reply other threads:[~2017-09-25 10:47 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CGME20170619165424epcas5p1a9f4deac326295f32d2d3e36861bfbbc@epcas5p1.samsung.com>
2017-06-19 16:53 ` [U-Boot] [PATCH] drivers: mmc: Avoid memory leak in case of failure sunil.m at techveda.org
2017-07-17 11:08 ` Jaehoon Chung
2017-08-04 9:34 ` Suniel Mahesh
2017-08-18 7:30 ` Jaehoon Chung
2017-09-25 10:47 ` Suniel Mahesh [this message]
2017-10-05 6:18 ` [U-Boot] [PATCH v2] " sunil.m at techveda.org
2017-10-20 11:45 ` Jaehoon Chung
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=f5dee3ff-3120-cb67-5486-69e4bb8cf076@techveda.org \
--to=sunil.m@techveda.org \
--cc=u-boot@lists.denx.de \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.