diff mbox series

netfilter: nftables: Provide NFT_{RT,CT}_MAX for userspace

Message ID 20180427104701.2480-1-phil@nwl.cc
State Accepted
Delegated to: Pablo Neira
Headers show
Series netfilter: nftables: Provide NFT_{RT,CT}_MAX for userspace | expand

Commit Message

Phil Sutter April 27, 2018, 10:47 a.m. UTC
These macros allow conveniently declaring arrays which use NFT_{RT,CT}_*
values as indexes.

Signed-off-by: Phil Sutter <phil@nwl.cc>
---
 include/uapi/linux/netfilter/nf_tables.h | 4 ++++
 1 file changed, 4 insertions(+)

Comments

Pablo Neira Ayuso May 6, 2018, 9:39 p.m. UTC | #1
On Fri, Apr 27, 2018 at 12:47:01PM +0200, Phil Sutter wrote:
> These macros allow conveniently declaring arrays which use NFT_{RT,CT}_*
> values as indexes.

Applied, thanks Phil.
--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox series

Patch

diff --git a/include/uapi/linux/netfilter/nf_tables.h b/include/uapi/linux/netfilter/nf_tables.h
index e2716590d203d..3106ab0d1f302 100644
--- a/include/uapi/linux/netfilter/nf_tables.h
+++ b/include/uapi/linux/netfilter/nf_tables.h
@@ -833,7 +833,9 @@  enum nft_rt_keys {
 	NFT_RT_NEXTHOP4,
 	NFT_RT_NEXTHOP6,
 	NFT_RT_TCPMSS,
+	__NFT_RT_MAX
 };
+#define NFT_RT_MAX		(__NFT_RT_MAX - 1)
 
 /**
  * enum nft_hash_types - nf_tables hash expression types
@@ -951,7 +953,9 @@  enum nft_ct_keys {
 	NFT_CT_DST_IP,
 	NFT_CT_SRC_IP6,
 	NFT_CT_DST_IP6,
+	__NFT_CT_MAX
 };
+#define NFT_CT_MAX		(__NFT_CT_MAX - 1)
 
 /**
  * enum nft_ct_attributes - nf_tables ct expression netlink attributes