Re: svn commit: r218583 - head/sys/dev/e1000

2011-02-14 Thread Fabien Thomas
> > > @@ -1937,6 +1937,10 @@ igb_local_timer(void *arg) > goto timeout; > out: > callout_reset(&adapter->timer, hz, igb_local_timer, adapter); > +#ifndef DEVICE_POLLING > + /* Fire off all queue interrupts - deadlock protection */ > + E1000_WRITE_REG(&adapter->

svn commit: r218583 - head/sys/dev/e1000

2011-02-11 Thread Jack F Vogel
Author: jfv Date: Fri Feb 11 19:49:07 2011 New Revision: 218583 URL: http://svn.freebsd.org/changeset/base/218583 Log: Somehow the RX ring depletion fix got partially removed, replace the missing pieces. Modified: head/sys/dev/e1000/if_igb.c Modified: head/sys/dev/e1000/if_igb.c ==