Blame SOURCES/0019-include-resync-nf_tables.h-cache-copy.patch

911625
From e872d169c189f363ebbdc39105510c1809b58276 Mon Sep 17 00:00:00 2001
911625
From: Phil Sutter <psutter@redhat.com>
911625
Date: Thu, 13 Feb 2020 17:48:18 +0100
911625
Subject: [PATCH] include: resync nf_tables.h cache copy
911625
911625
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1795224
911625
Upstream Status: nftables commit 9b94127950f98
911625
911625
commit 9b94127950f9848bc5a1505ae65ca3045ff68a16
911625
Author: Stefano Brivio <sbrivio@redhat.com>
911625
Date:   Thu Jan 30 01:16:55 2020 +0100
911625
911625
    include: resync nf_tables.h cache copy
911625
911625
    Get this header in sync with nf-next as of merge commit
911625
    b3a608222336 (5.6-rc1-ish).
911625
911625
    Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
911625
    Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
911625
---
911625
 include/linux/netfilter/nf_tables.h | 17 +++++++++++++++++
911625
 1 file changed, 17 insertions(+)
911625
911625
diff --git a/include/linux/netfilter/nf_tables.h b/include/linux/netfilter/nf_tables.h
911625
index ed8881a..1a99df3 100644
911625
--- a/include/linux/netfilter/nf_tables.h
911625
+++ b/include/linux/netfilter/nf_tables.h
911625
@@ -48,6 +48,7 @@ enum nft_registers {
911625
 
911625
 #define NFT_REG_SIZE	16
911625
 #define NFT_REG32_SIZE	4
911625
+#define NFT_REG32_COUNT	(NFT_REG32_15 - NFT_REG32_00 + 1)
911625
 
911625
 /**
911625
  * enum nft_verdicts - nf_tables internal verdicts
8ff5ad
@@ -299,14 +300,28 @@ enum nft_set_policies {
911625
  * enum nft_set_desc_attributes - set element description
911625
  *
911625
  * @NFTA_SET_DESC_SIZE: number of elements in set (NLA_U32)
911625
+ * @NFTA_SET_DESC_CONCAT: description of field concatenation (NLA_NESTED)
911625
  */
911625
 enum nft_set_desc_attributes {
911625
 	NFTA_SET_DESC_UNSPEC,
911625
 	NFTA_SET_DESC_SIZE,
911625
+	NFTA_SET_DESC_CONCAT,
911625
 	__NFTA_SET_DESC_MAX
911625
 };
911625
 #define NFTA_SET_DESC_MAX	(__NFTA_SET_DESC_MAX - 1)
911625
 
8ff5ad
+/**
911625
+ * enum nft_set_field_attributes - attributes of concatenated fields
911625
+ *
911625
+ * @NFTA_SET_FIELD_LEN: length of single field, in bits (NLA_U32)
911625
+ */
911625
+enum nft_set_field_attributes {
911625
+	NFTA_SET_FIELD_UNSPEC,
911625
+	NFTA_SET_FIELD_LEN,
911625
+	__NFTA_SET_FIELD_MAX
911625
+};
911625
+#define NFTA_SET_FIELD_MAX	(__NFTA_SET_FIELD_MAX - 1)
911625
+
8ff5ad
 /**
911625
  * enum nft_set_attributes - nf_tables set netlink attributes
911625
  *
911625
@@ -368,6 +383,7 @@ enum nft_set_elem_flags {
911625
  * @NFTA_SET_ELEM_USERDATA: user data (NLA_BINARY)
911625
  * @NFTA_SET_ELEM_EXPR: expression (NLA_NESTED: nft_expr_attributes)
911625
  * @NFTA_SET_ELEM_OBJREF: stateful object reference (NLA_STRING)
911625
+ * @NFTA_SET_ELEM_KEY_END: closing key value (NLA_NESTED: nft_data)
911625
  */
911625
 enum nft_set_elem_attributes {
911625
 	NFTA_SET_ELEM_UNSPEC,
911625
@@ -380,6 +396,7 @@ enum nft_set_elem_attributes {
911625
 	NFTA_SET_ELEM_EXPR,
911625
 	NFTA_SET_ELEM_PAD,
911625
 	NFTA_SET_ELEM_OBJREF,
911625
+	NFTA_SET_ELEM_KEY_END,
911625
 	__NFTA_SET_ELEM_MAX
911625
 };
911625
 #define NFTA_SET_ELEM_MAX	(__NFTA_SET_ELEM_MAX - 1)
911625
-- 
8ff5ad
2.31.1
911625