netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* 2.6.25-rc2 pull request, stop log noise from CONFIG_RPS
@ 2010-06-09 19:51 Tim Gardner
  2010-06-09 19:57 ` David Miller
  2010-06-09 23:28 ` David Miller
  0 siblings, 2 replies; 4+ messages in thread
From: Tim Gardner @ 2010-06-09 19:51 UTC (permalink / raw)
  To: davem; +Cc: eric.dumazet, netdev

Dave,

Please consider applying this patch in order to stop
log noise under certain configurations.

rtg
---------------
The following changes since commit 327723edebbbd621ed35b0d63073685eb225563e:
  David S. Miller (1):
        Merge branch 'master' of git://git.kernel.org/.../linville/wireless-2.6

are available in the git repository at:

  git://kernel.ubuntu.com/rtg/net-2.6 num_rx_queues

Tim Gardner (1):
      net: Print num_rx_queues imbalance warning only when there are allocated queues

 net/core/dev.c |    8 +++-----
 1 files changed, 3 insertions(+), 5 deletions(-)
>From 08c801f8d45387a1b46066aad1789a9bb9c4b645 Mon Sep 17 00:00:00 2001
From: Tim Gardner <tim.gardner@canonical.com>
Date: Tue, 8 Jun 2010 17:51:27 -0600
Subject: [PATCH] net: Print num_rx_queues imbalance warning only when there are allocated queues

BugLink: http://bugs.launchpad.net/bugs/591416

There are a number of network drivers (bridge, bonding, etc) that are not yet
receive multi-queue enabled and use alloc_netdev(), so don't print a
num_rx_queues imbalance warning in that case.

Also, only print the warning once for those drivers that _are_ multi-queue
enabled.

Signed-off-by: Tim Gardner <tim.gardner@canonical.com>
Acked-by: Eric Dumazet <eric.dumazet@gmail.com>
---
 net/core/dev.c |    8 +++-----
 1 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/net/core/dev.c b/net/core/dev.c
index d03470f..14a8568 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -2253,11 +2253,9 @@ static int get_rps_cpu(struct net_device *dev, struct sk_buff *skb,
 	if (skb_rx_queue_recorded(skb)) {
 		u16 index = skb_get_rx_queue(skb);
 		if (unlikely(index >= dev->num_rx_queues)) {
-			if (net_ratelimit()) {
-				pr_warning("%s received packet on queue "
-					"%u, but number of RX queues is %u\n",
-					dev->name, index, dev->num_rx_queues);
-			}
+			WARN_ONCE(dev->num_rx_queues > 1, "%s received packet "
+				"on queue %u, but number of RX queues is %u\n",
+				dev->name, index, dev->num_rx_queues);
 			goto done;
 		}
 		rxqueue = dev->_rx + index;
-- 
1.7.0.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-06-09 23:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-09 19:51 2.6.25-rc2 pull request, stop log noise from CONFIG_RPS Tim Gardner
2010-06-09 19:57 ` David Miller
2010-06-09 20:12   ` Tim Gardner
2010-06-09 23:28 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).