aboutsummaryrefslogtreecommitdiffstats
path: root/net/netfilter/core.c
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2016-11-03 10:56:43 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2016-11-03 11:53:00 +0100
commit08733a0cb7decce40bbbd0331a0449465f13c444 (patch)
tree1f206cbeae90d863b468156a5936ca5d265f8b3e /net/netfilter/core.c
parentnetfilter: merge nf_iterate() into nf_hook_slow() (diff)
downloadlinux-dev-08733a0cb7decce40bbbd0331a0449465f13c444.tar.xz
linux-dev-08733a0cb7decce40bbbd0331a0449465f13c444.zip
netfilter: handle NF_REPEAT from nf_conntrack_in()
NF_REPEAT is only needed from nf_conntrack_in() under a very specific case required by the TCP protocol tracker, we can handle this case without returning to the core hook path. Handling of NF_REPEAT from the nf_reinject() is left untouched. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to '')
-rw-r--r--net/netfilter/core.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/net/netfilter/core.c b/net/netfilter/core.c
index bd9272eeccb5..de30e08d58f2 100644
--- a/net/netfilter/core.c
+++ b/net/netfilter/core.c
@@ -322,8 +322,6 @@ int nf_hook_slow(struct sk_buff *skb, struct nf_hook_state *state,
if (ret == 0)
ret = -EPERM;
return ret;
- case NF_REPEAT:
- continue;
case NF_QUEUE:
ret = nf_queue(skb, state, &entry, verdict);
if (ret == 1 && entry)