Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2d9955be authored by Robert Stonehouse's avatar Robert Stonehouse Committed by Ben Hutchings
Browse files

sfc: Demote "MC Scheduler error" messages



The MC firmware is cooperatively multitasking and its scheduler will
send an event when a task yields after running for more than the
expected maximum time.  This can be useful for firmware development
but does not usually indicate a serious error and does not help to
detect a lockup (there is a hardware watchdog that does that).
Change the message and reduce log level accordingly.

Signed-off-by: default avatarBen Hutchings <bhutchings@solarflare.com>
parent 2dd64265
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -867,8 +867,8 @@ void efx_mcdi_process_event(struct efx_channel *channel,
		efx_mcdi_sensor_event(efx, event);
		break;
	case MCDI_EVENT_CODE_SCHEDERR:
		netif_info(efx, hw, efx->net_dev,
			   "MC Scheduler error address=0x%x\n", data);
		netif_dbg(efx, hw, efx->net_dev,
			  "MC Scheduler alert (0x%x)\n", data);
		break;
	case MCDI_EVENT_CODE_REBOOT:
	case MCDI_EVENT_CODE_MC_REBOOT: