diff options
author | Jarno Rajahalme <jarno@ovn.org> | 2017-02-23 20:08:54 -0500 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2017-02-26 11:06:59 -0500 |
commit | 4b86c459c7bee3acaf92f0e2b4c6ac803eaa1a58 (patch) | |
tree | 92a327731dd37dada3a753fae2807320329700ab /net | |
parent | 7fb668ac7b498f7e8ba2de373fe8a8648bd39a4c (diff) |
netfilter: nf_ct_expect: Change __nf_ct_expect_check() return value.
Commit 4dee62b1b9b4 ("netfilter: nf_ct_expect: nf_ct_expect_insert()
returns void") inadvertently changed the successful return value of
nf_ct_expect_related_report() from 0 to 1 due to
__nf_ct_expect_check() returning 1 on success. Prevent this
regression in the future by changing the return value of
__nf_ct_expect_check() to 0 on success.
Signed-off-by: Jarno Rajahalme <jarno@ovn.org>
Acked-by: Joe Stringer <joe@ovn.org>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/netfilter/nf_conntrack_expect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/netfilter/nf_conntrack_expect.c b/net/netfilter/nf_conntrack_expect.c index d6ace69d57dc..4b2e1fb28bb4 100644 --- a/net/netfilter/nf_conntrack_expect.c +++ b/net/netfilter/nf_conntrack_expect.c | |||
@@ -410,7 +410,7 @@ static inline int __nf_ct_expect_check(struct nf_conntrack_expect *expect) | |||
410 | struct net *net = nf_ct_exp_net(expect); | 410 | struct net *net = nf_ct_exp_net(expect); |
411 | struct hlist_node *next; | 411 | struct hlist_node *next; |
412 | unsigned int h; | 412 | unsigned int h; |
413 | int ret = 1; | 413 | int ret = 0; |
414 | 414 | ||
415 | if (!master_help) { | 415 | if (!master_help) { |
416 | ret = -ESHUTDOWN; | 416 | ret = -ESHUTDOWN; |
@@ -460,7 +460,7 @@ int nf_ct_expect_related_report(struct nf_conntrack_expect *expect, | |||
460 | 460 | ||
461 | spin_lock_bh(&nf_conntrack_expect_lock); | 461 | spin_lock_bh(&nf_conntrack_expect_lock); |
462 | ret = __nf_ct_expect_check(expect); | 462 | ret = __nf_ct_expect_check(expect); |
463 | if (ret <= 0) | 463 | if (ret < 0) |
464 | goto out; | 464 | goto out; |
465 | 465 | ||
466 | nf_ct_expect_insert(expect); | 466 | nf_ct_expect_insert(expect); |