From: Johannes Thumshirn
Date: Wed, 8 Jul 2015 17:16:49 +0200
> Destroy minor_idr on module_exit, reclaiming the allocated memory.
>
> This was detected by the following semantic patch (written by Luis Rodriguez
> )
...
> Signed-off-by: Johannes Thumshirn
Applied, thanks.
--
To unsubscribe f
Destroy minor_idr on module_exit, reclaiming the allocated memory.
This was detected by the following semantic patch (written by Luis Rodriguez
)
@ defines_module_init @
declarer name module_init, module_exit;
declarer name DEFINE_IDR;
identifier init;
@@
module_init(init);
@ defines_module_exi