mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Don't count RNBC (internal buffer full) towards the RX error count since it's
not really an error. Submitted by: Gerrit Nagelhout
This commit is contained in:
parent
c084d183ed
commit
2f93f011ec
1 changed files with 1 additions and 1 deletions
|
|
@ -3184,7 +3184,7 @@ em_update_stats_counters(struct adapter *adapter)
|
|||
adapter->stats.rxerrc +
|
||||
adapter->stats.crcerrs +
|
||||
adapter->stats.algnerrc +
|
||||
adapter->stats.rlec + adapter->stats.rnbc +
|
||||
adapter->stats.rlec +
|
||||
adapter->stats.mpc + adapter->stats.cexterr;
|
||||
|
||||
/* Tx Errors */
|
||||
|
|
|
|||
Loading…
Reference in a new issue