From 3aff6980c6ae73199bfce1fd041a5d2174d2102b Mon Sep 17 00:00:00 2001 From: Bill Paul Date: Thu, 8 Oct 1998 15:45:36 +0000 Subject: [PATCH] Correctly update the tail pointer of the transmit queue in tl_start() (one-liner). I have yet to actually encounter any problems due to this bug, but why take chances. --- sys/pci/if_tl.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys/pci/if_tl.c b/sys/pci/if_tl.c index d778794b16a..abf68c9e2b8 100644 --- a/sys/pci/if_tl.c +++ b/sys/pci/if_tl.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_tl.c,v 1.16 1998/09/24 17:14:23 wpaul Exp $ + * $Id: if_tl.c,v 1.17 1998/10/04 18:47:38 wpaul Exp $ */ /* @@ -218,7 +218,7 @@ #ifndef lint static char rcsid[] = - "$Id: if_tl.c,v 1.16 1998/09/24 17:14:23 wpaul Exp $"; + "$Id: if_tl.c,v 1.17 1998/10/04 18:47:38 wpaul Exp $"; #endif #ifdef TL_DEBUG @@ -2469,6 +2469,7 @@ static void tl_start(ifp) evset(sc, EV_START_Q); #endif sc->tl_cdata.tl_tx_tail->tl_next = start_tx; + sc->tl_cdata.tl_tx_tail = start_tx; } /*