* [PATCH] cxl: Destroy cxl_adapter_idr on module_exit
@ 2015-07-08 15:14 Johannes Thumshirn
2015-07-09 1:58 ` Ian Munsie
2015-07-16 9:54 ` Michael Ellerman
0 siblings, 2 replies; 4+ messages in thread
From: Johannes Thumshirn @ 2015-07-08 15:14 UTC (permalink / raw)
To: Ian Munsie, Michael Neuling
Cc: linuxppc-dev, linux-kernel, Johannes Thumshirn
Destroy cxl_adapter_idr on module exit, reclaiming the allocated memory.
This was detected by the following semantic patch (written by Luis Rodriguez
<mcgrof@suse.com>)
<SmPL>
@ defines_module_init @
declarer name module_init, module_exit;
declarer name DEFINE_IDR;
identifier init;
@@
module_init(init);
@ defines_module_exit @
identifier exit;
@@
module_exit(exit);
@ declares_idr depends on defines_module_init && defines_module_exit @
identifier idr;
@@
DEFINE_IDR(idr);
@ on_exit_calls_destroy depends on declares_idr && defines_module_exit @
identifier declares_idr.idr, defines_module_exit.exit;
@@
exit(void)
{
...
idr_destroy(&idr);
...
}
@ missing_module_idr_destroy depends on declares_idr && defines_module_exit && !on_exit_calls_destroy @
identifier declares_idr.idr, defines_module_exit.exit;
@@
exit(void)
{
...
+idr_destroy(&idr);
}
</SmPL>
Signed-off-by: Johannes Thumshirn <jthumshirn@suse.de>
---
drivers/misc/cxl/main.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/misc/cxl/main.c b/drivers/misc/cxl/main.c
index 833348e..4e58e0b 100644
--- a/drivers/misc/cxl/main.c
+++ b/drivers/misc/cxl/main.c
@@ -222,6 +222,7 @@ static void exit_cxl(void)
cxl_debugfs_exit();
cxl_file_exit();
unregister_cxl_calls(&cxl_calls);
+ idr_destroy(&cxl_adapter_idr);
}
module_init(init_cxl);
--
2.4.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] cxl: Destroy cxl_adapter_idr on module_exit
2015-07-08 15:14 [PATCH] cxl: Destroy cxl_adapter_idr on module_exit Johannes Thumshirn
@ 2015-07-09 1:58 ` Ian Munsie
2015-07-09 6:54 ` Johannes Thumshirn
2015-07-16 9:54 ` Michael Ellerman
1 sibling, 1 reply; 4+ messages in thread
From: Ian Munsie @ 2015-07-09 1:58 UTC (permalink / raw)
To: Johannes Thumshirn; +Cc: Michael Neuling, linuxppc-dev, linux-kernel
Acked-by: Ian Munsie <imunsie@au1.ibm.com>
We are probably also missing an idr_destroy(&afu->contexts_idr); in
cxl_release_afu() as well if you wanted to send a patch for that.
Cheers,
-Ian
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] cxl: Destroy cxl_adapter_idr on module_exit
2015-07-09 1:58 ` Ian Munsie
@ 2015-07-09 6:54 ` Johannes Thumshirn
0 siblings, 0 replies; 4+ messages in thread
From: Johannes Thumshirn @ 2015-07-09 6:54 UTC (permalink / raw)
To: Ian Munsie
Cc: Michael Neuling, linuxppc-dev, linux-kernel, Johannes Thumshirn
Ian Munsie <imunsie@au1.ibm.com> writes:
> Acked-by: Ian Munsie <imunsie@au1.ibm.com>
>
> We are probably also missing an idr_destroy(&afu->contexts_idr); in
> cxl_release_afu() as well if you wanted to send a patch for that.
>
> Cheers,
> -Ian
>
Correct, patch is going out today. Thanks for the hint.
--=20
Johannes Thumshirn Storage
jthumshirn@suse.de +49 911 74053 689
SUSE LINUX GmbH, Maxfeldstr. 5, 90409 N=C3=BCrnberg
GF: F. Imend=C3=B6rffer, J. Smithard, J. Guild, D. Upmanyu, G. Norton
HRB 21284 (AG N=C3=BCrnberg)
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: cxl: Destroy cxl_adapter_idr on module_exit
2015-07-08 15:14 [PATCH] cxl: Destroy cxl_adapter_idr on module_exit Johannes Thumshirn
2015-07-09 1:58 ` Ian Munsie
@ 2015-07-16 9:54 ` Michael Ellerman
1 sibling, 0 replies; 4+ messages in thread
From: Michael Ellerman @ 2015-07-16 9:54 UTC (permalink / raw)
To: Johannes Thumshirn, Ian Munsie, Michael Neuling
Cc: linuxppc-dev, linux-kernel, Johannes Thumshirn
On Wed, 2015-08-07 at 15:14:36 UTC, Johannes Thumshirn wrote:
> Destroy cxl_adapter_idr on module exit, reclaiming the allocated memory.
>
> Signed-off-by: Johannes Thumshirn <jthumshirn@suse.de>
> Acked-by: Ian Munsie <imunsie@au1.ibm.com>
Applied to powerpc next, thanks.
https://git.kernel.org/powerpc/c/b2a02ac65e40fb3900d1
cheers
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-07-16 9:54 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-08 15:14 [PATCH] cxl: Destroy cxl_adapter_idr on module_exit Johannes Thumshirn
2015-07-09 1:58 ` Ian Munsie
2015-07-09 6:54 ` Johannes Thumshirn
2015-07-16 9:54 ` Michael Ellerman
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).