From: Robert Shearman <rshea...@brocade.com> Date: Wed, 18 Jan 2017 15:32:01 +0000
> This patchset fixes an oops in lwtstate_free and a memory leak that > would otherwise be exposed by ensuring that references are taken on > modules that need to stay around to clean up lwt state. To faciliate > this all ops that implement destroy_state and that can be configured > to build as a module are changed specify the owner module in the > ops. The intersection of those two sets is just ila at the moment. Two things: 1) Under no circumstances should we allow a lwtunnel ops implementing module to unload while there is a rule using those ops which is alive. Therefore, we should not special case the destroy op. We should unconditionally grab the module reference. 2) Please add the new 'owner' field and add an appropriate assignment for ops->owner to _every_ lwtunnel implementation, and do so in your first patch. Please do not only do this for ILA. Thanks.