[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1349587787.21172.1908.camel@edumazet-glaptop>
Date: Sun, 07 Oct 2012 07:29:47 +0200
From: Eric Dumazet <eric.dumazet@...il.com>
To: Herbert Xu <herbert@...dor.apana.org.au>
Cc: David Miller <davem@...emloft.net>,
netdev <netdev@...r.kernel.org>, Jesse Gross <jesse@...ira.com>,
Tom Herbert <therbert@...gle.com>,
Yuchung Cheng <ycheng@...gle.com>
Subject: Re: [PATCH] net: gro: selective flush of packets
On Sun, 2012-10-07 at 08:32 +0800, Herbert Xu wrote:
> On Sat, Oct 06, 2012 at 08:08:49PM +0200, Eric Dumazet wrote:
> >
> > @@ -3981,8 +3996,17 @@ static void net_rx_action(struct softirq_action *h)
> > local_irq_enable();
> > napi_complete(n);
> > local_irq_disable();
> > - } else
> > + } else {
> > + if (n->gro_list) {
> > + /* flush too old packets
> > + * If HZ < 1000, flush all packets.
> > + */
> > + local_irq_enable();
> > + napi_gro_flush(n, HZ >= 1000);
> > + local_irq_disable();
> > + }
> > list_move_tail(&n->poll_list, &sd->poll_list);
> > + }
>
> Why don't we just always flush everything?
This is what I tried first, but it lowered performance on several
typical workloads.
Using this simple heuristic increases performance.
--
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