diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2017-12-19 14:07:52 +0100 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2018-01-10 15:32:05 +0100 |
commit | e7bb5c714020a2dce85b12766899f528883585ac (patch) | |
tree | bfbd192bff9be62cd34c9b3d426c549ed2a773ea /include/net | |
parent | fe19c04ca13737a48277fad28d912efbd72c1772 (diff) | |
download | op-kernel-dev-e7bb5c714020a2dce85b12766899f528883585ac.zip op-kernel-dev-e7bb5c714020a2dce85b12766899f528883585ac.tar.gz |
netfilter: nf_tables: remove flag field from struct nft_af_info
Replace it by a direct check for the netdev protocol family.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/netfilter/nf_tables.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/net/netfilter/nf_tables.h b/include/net/netfilter/nf_tables.h index 536aaec..9a85893 100644 --- a/include/net/netfilter/nf_tables.h +++ b/include/net/netfilter/nf_tables.h @@ -964,10 +964,6 @@ struct nft_table { char *name; }; -enum nft_af_flags { - NFT_AF_NEEDS_DEV = (1 << 0), -}; - /** * struct nft_af_info - nf_tables address family info * @@ -975,14 +971,12 @@ enum nft_af_flags { * @family: address family * @owner: module owner * @tables: used internally - * @flags: family flags */ struct nft_af_info { struct list_head list; int family; struct module *owner; struct list_head tables; - u32 flags; }; int nft_register_afinfo(struct net *, struct nft_af_info *); |