From: Eric Leblond Date: Mon, 18 Jan 2010 08:44:39 +0000 (+0100) Subject: netfilter: nfnetlink_queue: simplify warning message X-Git-Tag: accepted/tizen/common/20141203.182822~12683^2~154^2~49 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a5d896adf019143adf72d08826fe5359b6a8762c;p=platform%2Fkernel%2Flinux-arm64.git netfilter: nfnetlink_queue: simplify warning message This patch remove variable part from a debug message to have message concatenation from syslog. Signed-off-by: Eric Leblond Signed-off-by: Patrick McHardy --- diff --git a/net/netfilter/nfnetlink_queue.c b/net/netfilter/nfnetlink_queue.c index 5c589b2..90cf36d 100644 --- a/net/netfilter/nfnetlink_queue.c +++ b/net/netfilter/nfnetlink_queue.c @@ -414,8 +414,8 @@ nfqnl_enqueue_packet(struct nf_queue_entry *entry, unsigned int queuenum) queue->queue_dropped++; if (net_ratelimit()) printk(KERN_WARNING "nf_queue: full at %d entries, " - "dropping packets(s). Dropped: %d\n", - queue->queue_total, queue->queue_dropped); + "dropping packets(s).\n", + queue->queue_total); goto err_out_free_nskb; }