mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
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.
This commit is contained in:
parent
acb3c15910
commit
3aff6980c6
1 changed files with 3 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue