* [PATCH] rtc: avoid calling platform_device_put() twice in test_init()
@ 2012-10-23 5:08 Wei Yongjun
2012-11-07 0:51 ` Andrew Morton
0 siblings, 1 reply; 3+ messages in thread
From: Wei Yongjun @ 2012-10-23 5:08 UTC (permalink / raw)
To: a.zummo; +Cc: yongjun_wei, rtc-linux, linux-kernel
From: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
In case of error, the function test_init() need to call
platform_device_del() instead of platform_device_unregister().
Otherwise, we may call platform_device_put() twice.
dpatch engine is used to auto generate this patch.
(https://github.com/weiyj/dpatch)
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
---
drivers/rtc/rtc-test.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/rtc/rtc-test.c b/drivers/rtc/rtc-test.c
index 7e96254..209a127 100644
--- a/drivers/rtc/rtc-test.c
+++ b/drivers/rtc/rtc-test.c
@@ -164,7 +164,7 @@ static int __init test_init(void)
return 0;
exit_device_unregister:
- platform_device_unregister(test0);
+ platform_device_del(test0);
exit_free_test1:
platform_device_put(test1);
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] rtc: avoid calling platform_device_put() twice in test_init()
2012-10-23 5:08 [PATCH] rtc: avoid calling platform_device_put() twice in test_init() Wei Yongjun
@ 2012-11-07 0:51 ` Andrew Morton
2012-11-08 6:13 ` Wei Yongjun
0 siblings, 1 reply; 3+ messages in thread
From: Andrew Morton @ 2012-11-07 0:51 UTC (permalink / raw)
To: Wei Yongjun; +Cc: a.zummo, yongjun_wei, rtc-linux, linux-kernel
On Tue, 23 Oct 2012 13:08:41 +0800
Wei Yongjun <weiyj.lk@gmail.com> wrote:
> From: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
>
> In case of error, the function test_init() need to call
> platform_device_del() instead of platform_device_unregister().
> Otherwise, we may call platform_device_put() twice.
>
> dpatch engine is used to auto generate this patch.
> (https://github.com/weiyj/dpatch)
>
> Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
> ---
> drivers/rtc/rtc-test.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/rtc/rtc-test.c b/drivers/rtc/rtc-test.c
> index 7e96254..209a127 100644
> --- a/drivers/rtc/rtc-test.c
> +++ b/drivers/rtc/rtc-test.c
> @@ -164,7 +164,7 @@ static int __init test_init(void)
> return 0;
>
> exit_device_unregister:
> - platform_device_unregister(test0);
> + platform_device_del(test0);
>
> exit_free_test1:
> platform_device_put(test1);
Is platform_device_del() the partner to platform_device_add()? If so
then yes, this looks right. But I think the labels can be improved:
--- a/drivers/rtc/rtc-test.c~rtc-avoid-calling-platform_device_put-twice-in-test_init-fix
+++ a/drivers/rtc/rtc-test.c
@@ -152,24 +152,24 @@ static int __init test_init(void)
if ((test1 = platform_device_alloc("rtc-test", 1)) == NULL) {
err = -ENOMEM;
- goto exit_free_test0;
+ goto exit_put_test0;
}
if ((err = platform_device_add(test0)))
- goto exit_free_test1;
+ goto exit_put_test1;
if ((err = platform_device_add(test1)))
- goto exit_device_unregister;
+ goto exit_del_test0;
return 0;
-exit_device_unregister:
+exit_del_test0:
platform_device_del(test0);
-exit_free_test1:
+exit_put_test1:
platform_device_put(test1);
-exit_free_test0:
+exit_put_test0:
platform_device_put(test0);
exit_driver_unregister:
_
However, take a look at test_exit(). it does
platform_device_unregister(test0) when test0 is in the same state. Is
that code wrong as well? Presumably it's working OK?
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] rtc: avoid calling platform_device_put() twice in test_init()
2012-11-07 0:51 ` Andrew Morton
@ 2012-11-08 6:13 ` Wei Yongjun
0 siblings, 0 replies; 3+ messages in thread
From: Wei Yongjun @ 2012-11-08 6:13 UTC (permalink / raw)
To: akpm; +Cc: a.zummo, yongjun_wei, rtc-linux, linux-kernel
On 11/07/2012 08:51 AM, Andrew Morton wrote:
> On Tue, 23 Oct 2012 13:08:41 +0800
> Wei Yongjun <weiyj.lk@gmail.com> wrote:
>
>> From: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
>>
>> In case of error, the function test_init() need to call
>> platform_device_del() instead of platform_device_unregister().
>> Otherwise, we may call platform_device_put() twice.
>>
> Is platform_device_del() the partner to platform_device_add()? If so
> then yes, this looks right. But I think the labels can be improved:
>
> _
>
>
> However, take a look at test_exit(). it does
> platform_device_unregister(test0) when test0 is in the same state. Is
> that code wrong as well? Presumably it's working OK?
platform_device_unregister() is a warp of platform_device_del()
and platform_device_put(), if platform_device_add() success, we
can use platform_device_unregister() to do this, so that code
is OK.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-11-08 6:13 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-23 5:08 [PATCH] rtc: avoid calling platform_device_put() twice in test_init() Wei Yongjun
2012-11-07 0:51 ` Andrew Morton
2012-11-08 6:13 ` Wei Yongjun
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).