projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a1e6795
)
netfilter: nf_tables: fix set selection when timeouts are requested
author
Patrick McHardy
<kaber@trash.net>
Sun, 5 Apr 2015 12:41:05 +0000
(14:41 +0200)
committer
Pablo Neira Ayuso
<pablo@netfilter.org>
Wed, 8 Apr 2015 14:58:26 +0000
(16:58 +0200)
The NFT_SET_TIMEOUT flag is ignore in nft_select_set_ops, which may
lead to selection of a set implementation that doesn't actually
support timeouts.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
net/netfilter/nf_tables_api.c
patch
|
blob
|
blame
|
history
diff --git
a/net/netfilter/nf_tables_api.c
b/net/netfilter/nf_tables_api.c
index 3aa92b3f85fd075819bd1f34972a1f1c4de05244..0dab872e821b6a74f7ffca95f485420d6d9a7e08 100644
(file)
--- a/
net/netfilter/nf_tables_api.c
+++ b/
net/netfilter/nf_tables_api.c
@@
-2159,7
+2159,7
@@
nft_select_set_ops(const struct nlattr * const nla[],
features = 0;
if (nla[NFTA_SET_FLAGS] != NULL) {
features = ntohl(nla_get_be32(nla[NFTA_SET_FLAGS]));
- features &= NFT_SET_INTERVAL | NFT_SET_MAP;
+ features &= NFT_SET_INTERVAL | NFT_SET_MAP
| NFT_SET_TIMEOUT
;
}
bops = NULL;