lkml.org 
[lkml]   [2009]   [Aug]   [26]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    /
    SubjectRe: [PATCH] r8169: Reduce looping in the interrupt handler.
    From
    Date
    On Wed, 2009-08-26 at 00:58 -0700, Eric W. Biederman wrote:
    > As of 2.6.30 I have been observing soft lockups and netdev watchdog
    > timeouts caused by looping in the r8169 interrupt handler.
    >
    > - Introduce a hard limit to the maximum number of times we will loop in
    > the interrupt handler, and print a message when we hit it.
    >
    > - Break out of the loop if after looking none of the events in status
    > are events we expect to be delivered by an interrupt.
    >
    > With just the hard limit and message bits of my patch in my test case
    > I get hit my limit of 10 loops 12 times. After filtering by intr_mask
    > and intr_event I don't get any warnings.
    >
    > Any complaints from those who know the driver better than I?

    Have you tried this under a sustained heavy transmit load? I think you
    may have reintroduced the problem the original patch was trying to
    prevent -- wedging the MSI interrupt by not ACKing all outstanding
    interrupt sources, masked or otherwise. I'll try to test this out on the
    machine where I've seen the problem consistently, but it may be this
    weekend.

    > diff --git a/drivers/net/r8169.c b/drivers/net/r8169.c
    > index 3b19e0c..2214945 100644
    > --- a/drivers/net/r8169.c
    > +++ b/drivers/net/r8169.c

    > +
    > + /* Ignore the parts of status that reflect more than
    > + * the enabled interrupts.
    > + */
    > + smp_rmb();
    > + if (!(status & tp->intr_mask & tp->intr_event))
    > + break;
    > }

    This looks like an odd construct, since we're just about to go back the
    while condition up top -- why not just mask it here and let the loop
    handle it naturally?




    \
     
     \ /
      Last update: 2009-08-26 15:59    [W:2.780 / U:0.016 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site