PERFORCE change 216005 for review
John Baldwin
jhb at FreeBSD.org
Thu Aug 16 14:08:46 UTC 2012
http://p4web.freebsd.org/@@216005?ac=10
Change 216005 by jhb at jhb_jhbbsd on 2012/08/16 14:08:24
Don't call mfi_startio() explicitly from the callback.
Instead, let the interrupt handler do that when this
command completes, but go ahead and unthaw the queue as
soon as the callback runs. This matches what twe(4) does.
Affected files ...
.. //depot/projects/smpng/sys/dev/mfi/mfi.c#39 edit
Differences ...
==== //depot/projects/smpng/sys/dev/mfi/mfi.c#39 (text) ====
@@ -2273,10 +2273,7 @@
else
mfi_send_frame(sc, cm);
- if (sc->mfi_flags & MFI_FLAGS_QFRZN) {
- sc->mfi_flags &= ~MFI_FLAGS_QFRZN;
- mfi_startio(sc);
- }
+ sc->mfi_flags &= ~MFI_FLAGS_QFRZN;
return;
}
More information about the p4-projects
mailing list