diff options
author | Patrick McHardy <kaber@trash.net> | 2014-01-09 18:42:35 +0000 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2014-01-09 20:17:14 +0100 |
commit | 88ce65a71c39901494eb2f1393856bff8ba0158d (patch) | |
tree | 74ec344b9b23c85c96c47d26afe1a8bae3aa539e /net/ipv6 | |
parent | baae3e62f31618d90e08fb886b4481e5d7b7f27c (diff) | |
download | linux-88ce65a71c39901494eb2f1393856bff8ba0158d.tar.gz linux-88ce65a71c39901494eb2f1393856bff8ba0158d.tar.bz2 linux-88ce65a71c39901494eb2f1393856bff8ba0158d.zip |
netfilter: nf_tables: add missing module references to chain types
In some cases we neither take a reference to the AF info nor to the
chain type, allowing the module to be unloaded while in use.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/netfilter/nf_tables_ipv6.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/netfilter/nf_tables_ipv6.c b/net/ipv6/netfilter/nf_tables_ipv6.c index 025e7f4e8ac5..a34027687ecd 100644 --- a/net/ipv6/netfilter/nf_tables_ipv6.c +++ b/net/ipv6/netfilter/nf_tables_ipv6.c @@ -94,6 +94,7 @@ static struct nf_chain_type filter_ipv6 = { .family = NFPROTO_IPV6, .name = "filter", .type = NFT_CHAIN_T_DEFAULT, + .me = THIS_MODULE, .hook_mask = (1 << NF_INET_LOCAL_IN) | (1 << NF_INET_LOCAL_OUT) | (1 << NF_INET_FORWARD) | |