* [PATCH] st: Destroy st_index_idr on module exit
@ 2015-07-08 15:24 Johannes Thumshirn
2015-07-10 6:40 ` Hannes Reinecke
2015-07-10 12:42 ` "Kai Mäkisara (Kolumbus)"
0 siblings, 2 replies; 3+ messages in thread
From: Johannes Thumshirn @ 2015-07-08 15:24 UTC (permalink / raw)
To: Kai Mäkisara, James E.J. Bottomley
Cc: linux-scsi, linux-kernel, Johannes Thumshirn
Destroy st_index_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/scsi/st.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/scsi/st.c b/drivers/scsi/st.c
index 3f25b8f..79ac024 100644
--- a/drivers/scsi/st.c
+++ b/drivers/scsi/st.c
@@ -4427,6 +4427,7 @@ static void __exit exit_st(void)
unregister_chrdev_region(MKDEV(SCSI_TAPE_MAJOR, 0),
ST_MAX_TAPE_ENTRIES);
class_unregister(&st_sysfs_class);
+ idr_destroy(&st_index_idr);
printk(KERN_INFO "st: Unloaded.\n");
}
--
2.4.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] st: Destroy st_index_idr on module exit
2015-07-08 15:24 [PATCH] st: Destroy st_index_idr on module exit Johannes Thumshirn
@ 2015-07-10 6:40 ` Hannes Reinecke
2015-07-10 12:42 ` "Kai Mäkisara (Kolumbus)"
1 sibling, 0 replies; 3+ messages in thread
From: Hannes Reinecke @ 2015-07-10 6:40 UTC (permalink / raw)
To: Johannes Thumshirn, Kai Mäkisara, James E.J. Bottomley
Cc: linux-scsi, linux-kernel
On 07/08/2015 05:24 PM, Johannes Thumshirn wrote:
> Destroy st_index_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/scsi/st.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/scsi/st.c b/drivers/scsi/st.c
> index 3f25b8f..79ac024 100644
> --- a/drivers/scsi/st.c
> +++ b/drivers/scsi/st.c
> @@ -4427,6 +4427,7 @@ static void __exit exit_st(void)
> unregister_chrdev_region(MKDEV(SCSI_TAPE_MAJOR, 0),
> ST_MAX_TAPE_ENTRIES);
> class_unregister(&st_sysfs_class);
> + idr_destroy(&st_index_idr);
> printk(KERN_INFO "st: Unloaded.\n");
> }
>
>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Cheers,
Hannes
--
Dr. Hannes Reinecke zSeries & Storage
hare@suse.de +49 911 74053 688
SUSE LINUX GmbH, Maxfeldstr. 5, 90409 Nürnberg
GF: F. Imendörffer, J. Smithard, J. Guild, D. Upmanyu, G. Norton
HRB 21284 (AG Nürnberg)
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] st: Destroy st_index_idr on module exit
2015-07-08 15:24 [PATCH] st: Destroy st_index_idr on module exit Johannes Thumshirn
2015-07-10 6:40 ` Hannes Reinecke
@ 2015-07-10 12:42 ` "Kai Mäkisara (Kolumbus)"
1 sibling, 0 replies; 3+ messages in thread
From: "Kai Mäkisara (Kolumbus)" @ 2015-07-10 12:42 UTC (permalink / raw)
To: Johannes Thumshirn; +Cc: James E.J. Bottomley, linux-scsi, linux-kernel
> On 8.7.2015, at 18.24, Johannes Thumshirn <jthumshirn@suse.de> wrote:
>
> Destroy st_index_idr on module exit, reclaiming the allocated memory.
>
> This was detected by the following semantic patch (written by Luis Rodriguez
> <mcgrof@suse.com>)
>
...
>
> Signed-off-by: Johannes Thumshirn <jthumshirn@suse.de>
Acked-by: Kai Mäkisara <kai.makisara@kolumbus.fi>
Thanks,
Kai
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-07-10 12:51 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-08 15:24 [PATCH] st: Destroy st_index_idr on module exit Johannes Thumshirn
2015-07-10 6:40 ` Hannes Reinecke
2015-07-10 12:42 ` "Kai Mäkisara (Kolumbus)"
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox