[NETFILTER]: remove annoying debugging message
Don't log "nf_hook: Verdict = QUEUE." message with NETFILTER_DEBUG=y. Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
daaa8be2e0
commit
f9c6399050
1 changed files with 1 additions and 2 deletions
|
@ -178,8 +178,7 @@ int nf_hook_slow(int pf, unsigned int hook, struct sk_buff *skb,
|
|||
} else if (verdict == NF_DROP) {
|
||||
kfree_skb(skb);
|
||||
ret = -EPERM;
|
||||
} else if ((verdict & NF_VERDICT_MASK) == NF_QUEUE) {
|
||||
NFDEBUG("nf_hook: Verdict = QUEUE.\n");
|
||||
} else if ((verdict & NF_VERDICT_MASK) == NF_QUEUE) {
|
||||
if (!nf_queue(skb, elem, pf, hook, indev, outdev, okfn,
|
||||
verdict >> NF_VERDICT_BITS))
|
||||
goto next_hook;
|
||||
|
|
Loading…
Reference in a new issue