linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2 resend] Thermal:Fix memory leak if occur goto unregister
@ 2014-10-28  7:40 Yao Dongdong
  2014-10-28  7:40 ` [PATCH 2/2 resend] Thermal:Remove usless if(!result) before return tz Yao Dongdong
  2014-10-28  8:11 ` [PATCH 1/2 resend] Thermal:Fix memory leak if occur goto unregister Yao Dongdong
  0 siblings, 2 replies; 4+ messages in thread
From: Yao Dongdong @ 2014-10-28  7:40 UTC (permalink / raw)
  To: edubezval, rui.zhang; +Cc: linux-pm, linux-kernel, lizefan

Signed-off-by: Yao Dongdong <yaodongdong@huawei.com>
Acked-by: Eduardo Valentin <edubezval@gmail.com>
---
 drivers/thermal/thermal_core.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/thermal/thermal_core.c b/drivers/thermal/thermal_core.c
index 9bf10aa..d358605 100644
--- a/drivers/thermal/thermal_core.c
+++ b/drivers/thermal/thermal_core.c
@@ -1581,6 +1581,7 @@ struct thermal_zone_device *thermal_zone_device_register(const char *type,
 unregister:
 	release_idr(&thermal_tz_idr, &thermal_idr_lock, tz->id);
 	device_unregister(&tz->device);
+	kfree(tz);
 	return ERR_PTR(result);
 }
 EXPORT_SYMBOL_GPL(thermal_zone_device_register);
-- 
1.8.3.4


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

* [PATCH 2/2 resend] Thermal:Remove usless if(!result) before return tz
  2014-10-28  7:40 [PATCH 1/2 resend] Thermal:Fix memory leak if occur goto unregister Yao Dongdong
@ 2014-10-28  7:40 ` Yao Dongdong
  2014-10-28  8:11 ` [PATCH 1/2 resend] Thermal:Fix memory leak if occur goto unregister Yao Dongdong
  1 sibling, 0 replies; 4+ messages in thread
From: Yao Dongdong @ 2014-10-28  7:40 UTC (permalink / raw)
  To: edubezval, rui.zhang; +Cc: linux-pm, linux-kernel, lizefan

result is always zero when comes here.

Signed-off-by: Yao Dongdong <yaodongdong@huawei.com>
Acked-by: Eduardo Valentin <edubezval@gmail.com>
---
 drivers/thermal/thermal_core.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/thermal/thermal_core.c b/drivers/thermal/thermal_core.c
index d358605..a438c95 100644
--- a/drivers/thermal/thermal_core.c
+++ b/drivers/thermal/thermal_core.c
@@ -1575,8 +1575,7 @@ struct thermal_zone_device *thermal_zone_device_register(const char *type,
 
 	thermal_zone_device_update(tz);
 
-	if (!result)
-		return tz;
+	return tz;
 
 unregister:
 	release_idr(&thermal_tz_idr, &thermal_idr_lock, tz->id);
-- 
1.8.3.4


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

* Re: [PATCH 1/2 resend] Thermal:Fix memory leak if occur goto unregister
  2014-10-28  7:40 [PATCH 1/2 resend] Thermal:Fix memory leak if occur goto unregister Yao Dongdong
  2014-10-28  7:40 ` [PATCH 2/2 resend] Thermal:Remove usless if(!result) before return tz Yao Dongdong
@ 2014-10-28  8:11 ` Yao Dongdong
  2014-10-29  0:48   ` Eduardo Valentin
  1 sibling, 1 reply; 4+ messages in thread
From: Yao Dongdong @ 2014-10-28  8:11 UTC (permalink / raw)
  To: edubezval, rui.zhang; +Cc: linux-pm, linux-kernel, lizefan

Hello Eduardo,

I'm sorry for that my patches listed below have format problems, so i resend them.

https://lkml.org/lkml/2014/10/20/85
https://lkml.org/lkml/2014/10/20/84

Thanks,
Yao Dongdong


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

* Re: [PATCH 1/2 resend] Thermal:Fix memory leak if occur goto unregister
  2014-10-28  8:11 ` [PATCH 1/2 resend] Thermal:Fix memory leak if occur goto unregister Yao Dongdong
@ 2014-10-29  0:48   ` Eduardo Valentin
  0 siblings, 0 replies; 4+ messages in thread
From: Eduardo Valentin @ 2014-10-29  0:48 UTC (permalink / raw)
  To: Yao Dongdong; +Cc: rui.zhang, linux-pm, linux-kernel, lizefan

[-- Attachment #1: Type: text/plain, Size: 342 bytes --]

On Tue, Oct 28, 2014 at 04:11:00PM +0800, Yao Dongdong wrote:
> Hello Eduardo,
> 
> I'm sorry for that my patches listed below have format problems, so i resend them.
> 
> https://lkml.org/lkml/2014/10/20/85
> https://lkml.org/lkml/2014/10/20/84

No issues. Thanks. I will apply them in my tree.

> 
> Thanks,
> Yao Dongdong
> 

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

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

end of thread, other threads:[~2014-10-29  0:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-10-28  7:40 [PATCH 1/2 resend] Thermal:Fix memory leak if occur goto unregister Yao Dongdong
2014-10-28  7:40 ` [PATCH 2/2 resend] Thermal:Remove usless if(!result) before return tz Yao Dongdong
2014-10-28  8:11 ` [PATCH 1/2 resend] Thermal:Fix memory leak if occur goto unregister Yao Dongdong
2014-10-29  0:48   ` Eduardo Valentin

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