Skip to content

Commit f9c6399

Browse files
kaberdavem330
authored andcommitted
[NETFILTER]: remove annoying debugging message
Don't log "nf_hook: Verdict = QUEUE." message with NETFILTER_DEBUG=y. Signed-off-by: Patrick McHardy <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent daaa8be commit f9c6399

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

net/netfilter/core.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,7 @@ int nf_hook_slow(int pf, unsigned int hook, struct sk_buff *skb,
178178
} else if (verdict == NF_DROP) {
179179
kfree_skb(skb);
180180
ret = -EPERM;
181-
} else if ((verdict & NF_VERDICT_MASK) == NF_QUEUE) {
182-
NFDEBUG("nf_hook: Verdict = QUEUE.\n");
181+
} else if ((verdict & NF_VERDICT_MASK) == NF_QUEUE) {
183182
if (!nf_queue(skb, elem, pf, hook, indev, outdev, okfn,
184183
verdict >> NF_VERDICT_BITS))
185184
goto next_hook;

0 commit comments

Comments
 (0)