diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2016-08-09 16:11:46 +0200 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2016-08-12 00:44:37 +0200 |
commit | 0ed6389c483dc77cdbdd48de0ca7ce41723dd667 (patch) | |
tree | 359c77fe53ce37ca8c5fe569da44d93079c6e767 /net/netfilter/Makefile | |
parent | a6c46d9bc9d8ca6e30e681aadd30b73c44434b7d (diff) |
netfilter: nf_tables: rename set implementations
Use nft_set_* prefix for backend set implementations, thus we can use
nft_hash for the new hash expression.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/netfilter/Makefile')
-rw-r--r-- | net/netfilter/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/netfilter/Makefile b/net/netfilter/Makefile index 69134541d65b..101fb859203c 100644 --- a/net/netfilter/Makefile +++ b/net/netfilter/Makefile @@ -86,8 +86,8 @@ obj-$(CONFIG_NFT_NAT) += nft_nat.o obj-$(CONFIG_NFT_QUEUE) += nft_queue.o obj-$(CONFIG_NFT_REJECT) += nft_reject.o obj-$(CONFIG_NFT_REJECT_INET) += nft_reject_inet.o -obj-$(CONFIG_NFT_RBTREE) += nft_rbtree.o -obj-$(CONFIG_NFT_HASH) += nft_hash.o +obj-$(CONFIG_NFT_SET_RBTREE) += nft_set_rbtree.o +obj-$(CONFIG_NFT_SET_HASH) += nft_set_hash.o obj-$(CONFIG_NFT_COUNTER) += nft_counter.o obj-$(CONFIG_NFT_LOG) += nft_log.o obj-$(CONFIG_NFT_MASQ) += nft_masq.o |