]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
mrsas: if controller reset is in progress, refrain from firing DCMDs to
authorChandrakanth Patil <chandrakanth.patil@broadcom.com>
Fri, 21 Jan 2022 09:24:37 +0000 (14:54 +0530)
committerWarner Losh <imp@FreeBSD.org>
Tue, 5 Apr 2022 14:38:15 +0000 (08:38 -0600)
commit79c4c4be9618470711480f46ef2cd3a15c00cdd2
tree1b17754762755c99553e8e34a827e728a296a82e
parent241bb95552a39d440519162b544c776adcb7cf57
mrsas: if controller reset is in progress, refrain from firing DCMDs to
firmware in shutdown

If controller reset is in progress, at same time if system shutdown is
issued then corresponding shutdown function in driver will be invoked
where driver is waiting 15 seconds to complete the controller reset.

If the reset is not complteted within that time frame driver will go
ahead and fire cache flush and shutdown DCMDs which will end up
accessing the the queues which are not initialized due to undergoing
reset leads to FMU error in firmware.

Fix:
In shutdown function, if controller reset is not finished within 15
seconds than driver will return to the OS without firing any DCMDs.

Reviewed by: imp
PR: 261375
sys/dev/mrsas/mrsas.c