netfilter: nf_tables: increase maximum devices number per flowtable

Rise the maximum limit of devices per flowtable up to 256. Rename
NFT_FLOWTABLE_DEVICE_MAX to NFT_NETDEVICE_MAX in preparation to reuse
the netdev hook parser for ingress basechain.

Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
Pablo Neira Ayuso 2019-10-16 14:29:47 +02:00
Родитель b75a3e8371
Коммит cb662ac671
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1152,7 +1152,7 @@ struct nft_object_ops {
int nft_register_obj(struct nft_object_type *obj_type); int nft_register_obj(struct nft_object_type *obj_type);
void nft_unregister_obj(struct nft_object_type *obj_type); void nft_unregister_obj(struct nft_object_type *obj_type);
#define NFT_FLOWTABLE_DEVICE_MAX 8 #define NFT_NETDEVICE_MAX 256
/** /**
* struct nft_flowtable - nf_tables flow table * struct nft_flowtable - nf_tables flow table

Просмотреть файл

@ -1577,7 +1577,7 @@ static int nf_tables_parse_netdev_hooks(struct net *net,
list_add_tail(&hook->list, hook_list); list_add_tail(&hook->list, hook_list);
n++; n++;
if (n == NFT_FLOWTABLE_DEVICE_MAX) { if (n == NFT_NETDEVICE_MAX) {
err = -EFBIG; err = -EFBIG;
goto err_hook; goto err_hook;
} }