* [PATCH] IB/core: Destroy multcast_idr on moudle exit
@ 2015-07-08 15:21 Johannes Thumshirn
2015-07-08 21:42 ` Doug Ledford
0 siblings, 1 reply; 2+ messages in thread
From: Johannes Thumshirn @ 2015-07-08 15:21 UTC (permalink / raw)
To: Doug Ledford, Sean Hefty, Hal Rosenstock, Ilya Nelkenbaum
Cc: linux-rdma, linux-kernel, Johannes Thumshirn
Destroy multcast_idr on moudle 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/infiniband/core/ucma.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/infiniband/core/ucma.c b/drivers/infiniband/core/ucma.c
index ad45469..fb50598 100644
--- a/drivers/infiniband/core/ucma.c
+++ b/drivers/infiniband/core/ucma.c
@@ -1616,6 +1616,7 @@ static void __exit ucma_cleanup(void)
device_remove_file(ucma_misc.this_device, &dev_attr_abi_version);
misc_deregister(&ucma_misc);
idr_destroy(&ctx_idr);
+ idr_destroy(&multicast_idr);
}
module_init(ucma_init);
--
2.4.3
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] IB/core: Destroy multcast_idr on moudle exit
2015-07-08 15:21 [PATCH] IB/core: Destroy multcast_idr on moudle exit Johannes Thumshirn
@ 2015-07-08 21:42 ` Doug Ledford
0 siblings, 0 replies; 2+ messages in thread
From: Doug Ledford @ 2015-07-08 21:42 UTC (permalink / raw)
To: Johannes Thumshirn, Sean Hefty, Hal Rosenstock, Ilya Nelkenbaum
Cc: linux-rdma, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 228 bytes --]
On 07/08/2015 11:21 AM, Johannes Thumshirn wrote:
> Destroy multcast_idr on moudle exit, reclaiming the allocated memory.
Thanks, applied.
--
Doug Ledford <dledford@redhat.com>
GPG KeyID: 0E572FDD
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 884 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-07-08 21:43 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-08 15:21 [PATCH] IB/core: Destroy multcast_idr on moudle exit Johannes Thumshirn
2015-07-08 21:42 ` Doug Ledford
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox