mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
sfxge(4): improve TX/RX queue error messages
Report the full error descriptor in a form that can be passed to firmwaresrc/dpcpu/scripts/evdecode Submitted by: Mark Spender <mspender at solarflare.com> Sponsored by: Solarflare Communications, Inc. MFC after: 1 week
This commit is contained in:
parent
cf7aa80bbd
commit
44e44413d4
1 changed files with 6 additions and 2 deletions
|
|
@ -871,7 +871,9 @@ ef10_ev_mcdi(
|
|||
*/
|
||||
enp->en_reset_flags |= EFX_RESET_TXQ_ERR;
|
||||
|
||||
EFSYS_PROBE1(tx_descq_err, uint32_t, MCDI_EV_FIELD(eqp, DATA));
|
||||
EFSYS_PROBE2(tx_descq_err,
|
||||
uint32_t, EFX_QWORD_FIELD(*eqp, EFX_DWORD_1),
|
||||
uint32_t, EFX_QWORD_FIELD(*eqp, EFX_DWORD_0));
|
||||
|
||||
/* Inform the driver that a reset is required. */
|
||||
eecp->eec_exception(arg, EFX_EXCEPTION_TX_ERROR,
|
||||
|
|
@ -911,7 +913,9 @@ ef10_ev_mcdi(
|
|||
*/
|
||||
enp->en_reset_flags |= EFX_RESET_RXQ_ERR;
|
||||
|
||||
EFSYS_PROBE1(rx_descq_err, uint32_t, MCDI_EV_FIELD(eqp, DATA));
|
||||
EFSYS_PROBE2(rx_descq_err,
|
||||
uint32_t, EFX_QWORD_FIELD(*eqp, EFX_DWORD_1),
|
||||
uint32_t, EFX_QWORD_FIELD(*eqp, EFX_DWORD_0));
|
||||
|
||||
/* Inform the driver that a reset is required. */
|
||||
eecp->eec_exception(arg, EFX_EXCEPTION_RX_ERROR,
|
||||
|
|
|
|||
Loading…
Reference in a new issue