[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20100815200431.GA4993@del.dom.local>
Date: Sun, 15 Aug 2010 22:04:31 +0200
From: Jarek Poplawski <jarkao2@...il.com>
To: =?UTF-8?B?SmFrdWIgUnXFvmnEjWth?=
<ruzicka.jakub@...il.com>
Cc: netdev@...r.kernel.org
Subject: Re: via-rhine interrupts
Jakub RuĹžiÄka wrote, On 29.07.2010 13:03:
> Hello,
Hi,
> the via-rhine driver powered cards generate a really big number of
> interrupts, almost one per packet (11429 interrupts for 8210 incoming
> and 2475 outgoing packets per second on full 100 Mbps load). This is
> observed on multiple different machines (embbed and desktop) and
> kernels (2.6.25 with and without NAPI, 2.6.30, 2.6.32 and 2.6.33). Do
> you have any idea why isn't the polling used or what can I try to find
> out what's wrong?
>
> I have tested sending to/from the machines with nc and scp, measured
> interrups and load with atop. Few of these measurements on an embbed
> device (where the interrupt handling is a problem) are attached.
I've just tested it using a simplistic patch below, which skips
some napi receiving by doing it only every second jiffie (on even
ones), and I've got around 30% less interrupts from via-rhine,
which seems to suggest napi works OK, but there is too low
traffic (or too fast soft interrupt handling) to affect hard
interrupts. (Btw, probably CONFIG_HZ can matter here a bit too.
I tested with 1000.)
Cheers,
Jarek P.
--- (patch only for testing)
diff -Nurp a/net/core/dev.c b/net/core/dev.c
--- a/net/core/dev.c 2010-08-15 20:29:58.000000000 +0200
+++ b/net/core/dev.c 2010-08-15 21:15:04.000000000 +0200
@@ -3495,6 +3495,9 @@ static void net_rx_action(struct softirq
if (unlikely(budget <= 0 || time_after(jiffies, time_limit)))
goto softnet_break;
+ if (jiffies & 1)
+ goto softnet_break;
+
local_irq_enable();
/* Even though interrupts have been re-enabled, this
--
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