aboutsummaryrefslogtreecommitdiffstats
path: root/include/net
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2016-05-04 17:49:53 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2016-05-05 16:39:51 +0200
commitcb39ad8b8ef224c544074962780bf763077d6141 (patch)
treed79442a20d5088c0cfd209e8b3aafbf1e9c30a9d /include/net
parentnetfilter: x_tables: get rid of old and inconsistent debugging (diff)
downloadlinux-dev-cb39ad8b8ef224c544074962780bf763077d6141.tar.xz
linux-dev-cb39ad8b8ef224c544074962780bf763077d6141.zip
netfilter: nf_tables: allow set names up to 32 bytes
Currently, we support set names of up to 16 bytes, get this aligned with the maximum length we can use in ipset to make it easier when considering migration to nf_tables. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include/net')
-rw-r--r--include/net/netfilter/nf_tables.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/netfilter/nf_tables.h b/include/net/netfilter/nf_tables.h
index f6b1daf2e698..092235458691 100644
--- a/include/net/netfilter/nf_tables.h
+++ b/include/net/netfilter/nf_tables.h
@@ -303,7 +303,7 @@ void nft_unregister_set(struct nft_set_ops *ops);
struct nft_set {
struct list_head list;
struct list_head bindings;
- char name[IFNAMSIZ];
+ char name[NFT_SET_MAXNAMELEN];
u32 ktype;
u32 dtype;
u32 size;