]> git.droids-corp.org - dpdk.git/blobdiff - drivers/net/sfc/base/ef10_ev.c
net/sfc/base: report correct partition write chunk size
[dpdk.git] / drivers / net / sfc / base / ef10_ev.c
index 35226749f5e740a431996d60e448363e3c6c7d1b..d9389dab6334404f5e075863d30cb11f7e5ac5cc 100644 (file)
@@ -431,7 +431,12 @@ efx_mcdi_fini_evq(
        return (0);
 
 fail1:
-       EFSYS_PROBE1(fail1, efx_rc_t, rc);
+       /*
+        * EALREADY is not an error, but indicates that the MC has rebooted and
+        * that the EVQ has already been destroyed.
+        */
+       if (rc != EALREADY)
+               EFSYS_PROBE1(fail1, efx_rc_t, rc);
 
        return (rc);
 }