mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
ematch: Fix auto-loading of ematch modules.
In tcf_em_validate(), after calling request_module() to load the kind-specific module, set em->ops to NULL before returning -EAGAIN, so that module_put() is not called again by tcf_em_tree_destroy(). Signed-off-by: Ignacy Gawędzki <ignacy.gawedzki@green-communications.fr> Acked-by: Cong Wang <cwang@twopensource.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
54da5a8be3
commit
34eea79e26
@ -228,6 +228,7 @@ static int tcf_em_validate(struct tcf_proto *tp,
|
||||
* to replay the request.
|
||||
*/
|
||||
module_put(em->ops->owner);
|
||||
em->ops = NULL;
|
||||
err = -EAGAIN;
|
||||
}
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user