summaryrefslogtreecommitdiffstats
path: root/sys/pci
diff options
context:
space:
mode:
authorwpaul <wpaul@FreeBSD.org>1998-10-08 15:45:36 +0000
committerwpaul <wpaul@FreeBSD.org>1998-10-08 15:45:36 +0000
commitd0066a99a0a7a161686212aec1cdd9698662101a (patch)
treec0dd51a7089326a694c2bb187ed434ed70f81e49 /sys/pci
parente52e6a8d2ca7bc5b7b4fee88571ed8ff12f6c3ea (diff)
downloadFreeBSD-src-d0066a99a0a7a161686212aec1cdd9698662101a.zip
FreeBSD-src-d0066a99a0a7a161686212aec1cdd9698662101a.tar.gz
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.
Diffstat (limited to 'sys/pci')
-rw-r--r--sys/pci/if_tl.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/pci/if_tl.c b/sys/pci/if_tl.c
index d778794..abf68c9 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;
}
/*
OpenPOWER on IntegriCloud