linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 -next] mtd: docg3: Fix a possible memory leak of mtd->name
@ 2019-01-23  9:28 YueHaibing
  2019-01-23 20:54 ` Robert Jarzmik
  2019-01-24 15:00 ` Boris Brezillon
  0 siblings, 2 replies; 4+ messages in thread
From: YueHaibing @ 2019-01-23  9:28 UTC (permalink / raw)
  To: robert.jarzmik, dwmw2, computersforpeace, bbrezillon,
	marek.vasut, richard
  Cc: linux-kernel, linux-mtd, YueHaibing

In case DOC_CHIPID_G3, mtd->name is not freed in err handling path,
which is alloced by kasprintf(). Fix this by using devm_kasprintf().

Fixes: ae9d4934b2d7 ("mtd: docg3: add multiple floor support")
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
---
v3: use devm_kasprintf
---
 drivers/mtd/devices/docg3.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/mtd/devices/docg3.c b/drivers/mtd/devices/docg3.c
index 4c94fc0..59ca4f5 100644
--- a/drivers/mtd/devices/docg3.c
+++ b/drivers/mtd/devices/docg3.c
@@ -1767,8 +1767,8 @@ static int __init doc_set_driver_info(int chip_id, struct mtd_info *mtd)
 
 	switch (chip_id) {
 	case DOC_CHIPID_G3:
-		mtd->name = kasprintf(GFP_KERNEL, "docg3.%d",
-				      docg3->device_id);
+		mtd->name = devm_kasprintf(docg3->dev, GFP_KERNEL, "docg3.%d",
+					   docg3->device_id);
 		if (!mtd->name)
 			return -ENOMEM;
 		docg3->max_block = 2047;
-- 
2.7.0



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v3 -next] mtd: docg3: Fix a possible memory leak of mtd->name
  2019-01-23  9:28 [PATCH v3 -next] mtd: docg3: Fix a possible memory leak of mtd->name YueHaibing
@ 2019-01-23 20:54 ` Robert Jarzmik
  2019-01-24 15:00 ` Boris Brezillon
  1 sibling, 0 replies; 4+ messages in thread
From: Robert Jarzmik @ 2019-01-23 20:54 UTC (permalink / raw)
  To: YueHaibing
  Cc: dwmw2, computersforpeace, bbrezillon, marek.vasut, richard,
	linux-kernel, linux-mtd

YueHaibing <yuehaibing@huawei.com> writes:

> In case DOC_CHIPID_G3, mtd->name is not freed in err handling path,
> which is alloced by kasprintf(). Fix this by using devm_kasprintf().
>
> Fixes: ae9d4934b2d7 ("mtd: docg3: add multiple floor support")
> Signed-off-by: YueHaibing <yuehaibing@huawei.com>
> ---
> v3: use devm_kasprintf
> ---
>  drivers/mtd/devices/docg3.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
Acked-by: Robert Jarzmik <robert.jarzmik@free.fr>

Cheers.

--
Robert

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v3 -next] mtd: docg3: Fix a possible memory leak of mtd->name
  2019-01-23  9:28 [PATCH v3 -next] mtd: docg3: Fix a possible memory leak of mtd->name YueHaibing
  2019-01-23 20:54 ` Robert Jarzmik
@ 2019-01-24 15:00 ` Boris Brezillon
  2019-01-25  1:40   ` YueHaibing
  1 sibling, 1 reply; 4+ messages in thread
From: Boris Brezillon @ 2019-01-24 15:00 UTC (permalink / raw)
  To: YueHaibing
  Cc: robert.jarzmik, dwmw2, computersforpeace, marek.vasut, richard,
	linux-kernel, linux-mtd

On Wed, 23 Jan 2019 17:28:19 +0800
YueHaibing <yuehaibing@huawei.com> wrote:

> In case DOC_CHIPID_G3, mtd->name is not freed in err handling path,
> which is alloced by kasprintf(). Fix this by using devm_kasprintf().
> 
> Fixes: ae9d4934b2d7 ("mtd: docg3: add multiple floor support")
> Signed-off-by: YueHaibing <yuehaibing@huawei.com>
> ---
> v3: use devm_kasprintf
> ---
>  drivers/mtd/devices/docg3.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/mtd/devices/docg3.c b/drivers/mtd/devices/docg3.c
> index 4c94fc0..59ca4f5 100644
> --- a/drivers/mtd/devices/docg3.c
> +++ b/drivers/mtd/devices/docg3.c
> @@ -1767,8 +1767,8 @@ static int __init doc_set_driver_info(int chip_id, struct mtd_info *mtd)
>  
>  	switch (chip_id) {
>  	case DOC_CHIPID_G3:
> -		mtd->name = kasprintf(GFP_KERNEL, "docg3.%d",
> -				      docg3->device_id);
> +		mtd->name = devm_kasprintf(docg3->dev, GFP_KERNEL, "docg3.%d",
> +					   docg3->device_id);

You forgot to remove the kfree() in the ->remove() path.

>  		if (!mtd->name)
>  			return -ENOMEM;
>  		docg3->max_block = 2047;


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v3 -next] mtd: docg3: Fix a possible memory leak of mtd->name
  2019-01-24 15:00 ` Boris Brezillon
@ 2019-01-25  1:40   ` YueHaibing
  0 siblings, 0 replies; 4+ messages in thread
From: YueHaibing @ 2019-01-25  1:40 UTC (permalink / raw)
  To: Boris Brezillon
  Cc: robert.jarzmik, dwmw2, computersforpeace, marek.vasut, richard,
	linux-kernel, linux-mtd

On 2019/1/24 23:00, Boris Brezillon wrote:
> On Wed, 23 Jan 2019 17:28:19 +0800
> YueHaibing <yuehaibing@huawei.com> wrote:
> 
>> In case DOC_CHIPID_G3, mtd->name is not freed in err handling path,
>> which is alloced by kasprintf(). Fix this by using devm_kasprintf().
>>
>> Fixes: ae9d4934b2d7 ("mtd: docg3: add multiple floor support")
>> Signed-off-by: YueHaibing <yuehaibing@huawei.com>
>> ---
>> v3: use devm_kasprintf
>> ---
>>  drivers/mtd/devices/docg3.c | 4 ++--
>>  1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/mtd/devices/docg3.c b/drivers/mtd/devices/docg3.c
>> index 4c94fc0..59ca4f5 100644
>> --- a/drivers/mtd/devices/docg3.c
>> +++ b/drivers/mtd/devices/docg3.c
>> @@ -1767,8 +1767,8 @@ static int __init doc_set_driver_info(int chip_id, struct mtd_info *mtd)
>>  
>>  	switch (chip_id) {
>>  	case DOC_CHIPID_G3:
>> -		mtd->name = kasprintf(GFP_KERNEL, "docg3.%d",
>> -				      docg3->device_id);
>> +		mtd->name = devm_kasprintf(docg3->dev, GFP_KERNEL, "docg3.%d",
>> +					   docg3->device_id);
> 
> You forgot to remove the kfree() in the ->remove() path.

Oops..., I will fix this.

Thanks a lot!

> 
>>  		if (!mtd->name)
>>  			return -ENOMEM;
>>  		docg3->max_block = 2047;
> 
> 
> .
> 


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-01-25  1:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-23  9:28 [PATCH v3 -next] mtd: docg3: Fix a possible memory leak of mtd->name YueHaibing
2019-01-23 20:54 ` Robert Jarzmik
2019-01-24 15:00 ` Boris Brezillon
2019-01-25  1:40   ` YueHaibing

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).