Re: [PATCH] st: Destroy st_index_idr on module exit

2015-07-10 Thread Kai Mäkisara (Kolumbus)
> On 8.7.2015, at 18.24, 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 > ) > ... > > Signed-off-by: Johannes Thumshirn Acked-by: Kai Mäkisara Thanks, Kai

Re: [PATCH] st: Destroy st_index_idr on module exit

2015-07-09 Thread Hannes Reinecke
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 > ) > > @ defines_module_init @ > declarer name module_init, module_exit; > declarer name DEFI

[PATCH] st: Destroy st_index_idr on module exit

2015-07-08 Thread 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 ) @ defines_module_init @ declarer name module_init, module_exit; declarer name DEFINE_IDR; identifier init; @@ module_init(init); @ defines_module_