projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ce38061
)
netfilter: nft_set_hash: skip fixed hash if timeout is specified
author
Pablo Neira Ayuso
<pablo@netfilter.org>
Mon, 5 Mar 2018 15:07:38 +0000
(16:07 +0100)
committer
Pablo Neira Ayuso
<pablo@netfilter.org>
Tue, 6 Mar 2018 11:23:33 +0000
(12:23 +0100)
Fixed hash supports to timeouts, so skip it. Otherwise, userspace hits
EOPNOTSUPP.
Fixes: 6c03ae210ce3 ("netfilter: nft_set_hash: add non-resizable hashtable implementation")
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
net/netfilter/nft_set_hash.c
patch
|
blob
|
history
diff --git
a/net/netfilter/nft_set_hash.c
b/net/netfilter/nft_set_hash.c
index 3f1624ee056f96570254cf5d8737f38b82a87593..d40591fe1b2f64c3531b35abcadd8dbfc6d67c8a 100644
(file)
--- a/
net/netfilter/nft_set_hash.c
+++ b/
net/netfilter/nft_set_hash.c
@@
-674,7
+674,7
@@
static const struct nft_set_ops *
nft_hash_select_ops(const struct nft_ctx *ctx, const struct nft_set_desc *desc,
u32 flags)
{
- if (desc->size) {
+ if (desc->size
&& !(flags & NFT_SET_TIMEOUT)
) {
switch (desc->klen) {
case 4:
return &nft_hash_fast_ops;