diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2015-05-26 18:41:40 +0200 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2015-05-26 18:41:23 +0200 |
commit | ed6c4136f1571bd6ab362afc3410905a8a69ca42 (patch) | |
tree | 4b8e910c631dce906891caf07a6ab88ec7e12c4f /net/netfilter/Makefile | |
parent | ebddf1a8d78aa3436353fae75c4396e50cb2d6cf (diff) | |
download | talos-obmc-linux-ed6c4136f1571bd6ab362afc3410905a8a69ca42.tar.gz talos-obmc-linux-ed6c4136f1571bd6ab362afc3410905a8a69ca42.zip |
netfilter: nf_tables: add netdev table to filter from ingress
This allows us to create netdev tables that contain ingress chains. Use
skb_header_pointer() as we may see shared sk_buffs at this stage.
This change provides access to the existing nf_tables features from the ingress
hook.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/netfilter/Makefile')
-rw-r--r-- | net/netfilter/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/netfilter/Makefile b/net/netfilter/Makefile index a87d8b8ec730..70d026d46fe7 100644 --- a/net/netfilter/Makefile +++ b/net/netfilter/Makefile @@ -75,6 +75,7 @@ nf_tables-objs += nft_bitwise.o nft_byteorder.o nft_payload.o obj-$(CONFIG_NF_TABLES) += nf_tables.o obj-$(CONFIG_NF_TABLES_INET) += nf_tables_inet.o +obj-$(CONFIG_NF_TABLES_NETDEV) += nf_tables_netdev.o obj-$(CONFIG_NFT_COMPAT) += nft_compat.o obj-$(CONFIG_NFT_EXTHDR) += nft_exthdr.o obj-$(CONFIG_NFT_META) += nft_meta.o |