diff options
author | Jason Wright <jason@cvs.openbsd.org> | 1998-12-31 02:40:22 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 1998-12-31 02:40:22 +0000 |
commit | d0752d1cede0e8f54ebfe16da73dc560e306c97f (patch) | |
tree | 671d4e8b5f6c4f20c65a93a8dcdbc50ec32587b1 /sys/dev | |
parent | 7d641a6b034e26b5804f88053e74c0af90faf0af (diff) |
tl_tx_tail pointer was not always being updated correctly; freebsd.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/if_tl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/pci/if_tl.c b/sys/dev/pci/if_tl.c index 1b963792192..471cd0d3603 100644 --- a/sys/dev/pci/if_tl.c +++ b/sys/dev/pci/if_tl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_tl.c,v 1.6 1998/12/22 05:33:52 jason Exp $ */ +/* $OpenBSD: if_tl.c,v 1.7 1998/12/31 02:40:21 jason Exp $ */ /* * Copyright (c) 1997, 1998 @@ -31,7 +31,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD: if_tl.c,v 1.23 1998/12/14 06:32:56 dillon Exp $ + * $FreeBSD: if_tl.c,v 1.24 1998/12/29 15:39:35 wpaul Exp $ */ /* @@ -248,7 +248,7 @@ #if !defined(lint) && !defined(__OpenBSD__) static char rcsid[] = - "$FreeBSD: if_tl.c,v 1.23 1998/12/14 06:32:56 dillon Exp $"; + "$FreeBSD: if_tl.c,v 1.24 1998/12/29 15:39:35 wpaul Exp $"; #endif #ifdef TL_DEBUG @@ -2586,7 +2586,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; + sc->tl_cdata.tl_tx_tail = cur_tx; } /* |