Re: [PATCH] macvtap: Destroy minor_idr on module_exit

2015-07-09 Thread David Miller
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

[PATCH] macvtap: Destroy minor_idr on module_exit

2015-07-08 Thread Johannes Thumshirn
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