netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [patch 5/7] forcdeth: increase max_interrupt_work
@ 2008-10-29 21:22 akpm
  2008-11-02 13:30 ` Jeff Garzik
  0 siblings, 1 reply; 2+ messages in thread
From: akpm @ 2008-10-29 21:22 UTC (permalink / raw)
  To: jeff; +Cc: netdev, akpm, joe.korty, aabdulla

From: Joe Korty <joe.korty@ccur.com>

This eliminates the following often-generated warning from my 64 bit
Opteron SMP test stand:

	eth0: too many iterations (6) in nv_nic_irq

According to the web, the problem is that the forcedeth driver has a
too-low value for max_interrupt_work.  Grepping the kernel I see that
forcedeth has the second lowest value of all ethernet drivers (ie, 6). 
Most are in the 20-40 range.  So this patch increases this a bit, from 6
to 15 (at 15 forcedeth becomes the driver with third-lowest
max_interrupt_work value).

My test stand, which used to print out the above warnings repetitively
whenever it was under heavy net load, no longer does so.

Signed-off-by: Joe Korty <joe.korty@ccur.com>
Cc: Ayaz Abdulla <aabdulla@nvidia.com>
Cc: Jeff Garzik <jeff@garzik.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 drivers/net/forcedeth.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -puN drivers/net/forcedeth.c~forcdeth-increase-max_interrupt_work drivers/net/forcedeth.c
--- a/drivers/net/forcedeth.c~forcdeth-increase-max_interrupt_work
+++ a/drivers/net/forcedeth.c
@@ -818,7 +818,7 @@ struct fe_priv {
  * Maximum number of loops until we assume that a bit in the irq mask
  * is stuck. Overridable with module param.
  */
-static int max_interrupt_work = 5;
+static int max_interrupt_work = 15;
 
 /*
  * Optimization can be either throuput mode or cpu mode
_

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

* Re: [patch 5/7] forcdeth: increase max_interrupt_work
  2008-10-29 21:22 [patch 5/7] forcdeth: increase max_interrupt_work akpm
@ 2008-11-02 13:30 ` Jeff Garzik
  0 siblings, 0 replies; 2+ messages in thread
From: Jeff Garzik @ 2008-11-02 13:30 UTC (permalink / raw)
  To: akpm; +Cc: netdev, joe.korty, aabdulla

akpm@linux-foundation.org wrote:
> From: Joe Korty <joe.korty@ccur.com>
> 
> This eliminates the following often-generated warning from my 64 bit
> Opteron SMP test stand:
> 
> 	eth0: too many iterations (6) in nv_nic_irq
> 
> According to the web, the problem is that the forcedeth driver has a
> too-low value for max_interrupt_work.  Grepping the kernel I see that
> forcedeth has the second lowest value of all ethernet drivers (ie, 6). 
> Most are in the 20-40 range.  So this patch increases this a bit, from 6
> to 15 (at 15 forcedeth becomes the driver with third-lowest
> max_interrupt_work value).
> 
> My test stand, which used to print out the above warnings repetitively
> whenever it was under heavy net load, no longer does so.
> 
> Signed-off-by: Joe Korty <joe.korty@ccur.com>
> Cc: Ayaz Abdulla <aabdulla@nvidia.com>
> Cc: Jeff Garzik <jeff@garzik.org>
> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
> ---
> 
>  drivers/net/forcedeth.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

applied



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

end of thread, other threads:[~2008-11-02 13:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-29 21:22 [patch 5/7] forcdeth: increase max_interrupt_work akpm
2008-11-02 13:30 ` Jeff Garzik

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).