[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20110222161941.GE11864@gospo.rdu.redhat.com>
Date: Tue, 22 Feb 2011 11:19:41 -0500
From: Andy Gospodarek <andy@...yhouse.net>
To: Phil Oester <kernel@...uxace.com>
Cc: Andy Gospodarek <andy@...yhouse.net>, netdev@...r.kernel.org,
Ben Hutchings <bhutchings@...arflare.com>,
Jay Vosburgh <fubar@...ibm.com>
Subject: Re: [PATCH net-next-2.6] bonding: fix user-controlled queuing
issues
On Tue, Feb 22, 2011 at 07:55:18AM -0800, Phil Oester wrote:
> On Mon, Feb 21, 2011 at 05:53:03PM -0500, Andy Gospodarek wrote:
> > Users noticed the following messages were filling their logs when using
> > queue 16 for user-mode bonding:
> >
> > kernel: bond0 selects TX queue 16, but real number of TX queues is 16
> >
> > ---
> >
> > My tests all seem to work well, but more testing/feedback is obviously
> > appreciated.
>
> Sorry, this patch does not fix the issue:
>
> Feb 22 10:46:50 foo kernel: bond0 selects TX queue 16, but real number of TX queues is 16
>
> Adding the below debugging patch confirms:
>
> --- a/net/core/dev.c.orig 2011-02-17 11:42:09.110280300 -0500
> +++ b/net/core/dev.c 2011-02-17 11:40:42.110280300 -0500
> @@ -2060,6 +2060,11 @@
> int queue_index;
> const struct net_device_ops *ops = dev->netdev_ops;
>
> + if (net_ratelimit()) {
> + pr_warning("dev_pick_tx: %s queue_mapping=%d, real_num=%d\n",
> + dev->name, skb->queue_mapping, dev->real_num_tx_queues);
> + }
> +
> if (ops->ndo_select_queue) {
> queue_index = ops->ndo_select_queue(dev, skb);
> queue_index = dev_cap_txqueue(dev, queue_index);
>
>
> Produces a number of these in the logs:
>
> Feb 22 10:46:50 foo kernel: dev_pick_tx: bond0 queue_mapping=16, real_num=16
>
Phil,
Can you send me the minimal set of tc rules that selects output queue 16
and the output of /proc/net/bonding/bond0?
Private email is fine if you do not want to post it to the list.
Thanks,
-andy
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists