mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Missing a fix for the new watchdog handling.
This commit is contained in:
parent
4b502b77de
commit
ac95ee294c
2 changed files with 2 additions and 0 deletions
|
|
@ -2224,6 +2224,7 @@ em_xmit(struct adapter *adapter, struct mbuf **m_headp)
|
|||
*/
|
||||
tx_buffer = &adapter->tx_buffer_area[first];
|
||||
tx_buffer->next_eop = last;
|
||||
adapter->watchdog_time = ticks;
|
||||
|
||||
/*
|
||||
* Advance the Transmit Descriptor Tail (TDT), this tells the E1000
|
||||
|
|
|
|||
|
|
@ -1645,6 +1645,7 @@ igb_xmit(struct tx_ring *txr, struct mbuf **m_headp)
|
|||
*/
|
||||
tx_buffer = &txr->tx_buffers[first];
|
||||
tx_buffer->next_eop = last;
|
||||
txr->watchdog_time = ticks;
|
||||
|
||||
/*
|
||||
* Advance the Transmit Descriptor Tail (TDT), this tells the E1000
|
||||
|
|
|
|||
Loading…
Reference in a new issue