PERFORCE change 216004 for review
John Baldwin
jhb at FreeBSD.org
Thu Aug 16 14:04:23 UTC 2012
http://p4web.freebsd.org/@@216004?ac=10
Change 216004 by jhb at jhb_jhbbsd on 2012/08/16 14:03:57
Put this fix here so I don't lose it.
Affected files ...
.. //depot/projects/smpng/sys/dev/mfi/mfi.c#38 edit
Differences ...
==== //depot/projects/smpng/sys/dev/mfi/mfi.c#38 (text) ====
@@ -1255,9 +1255,7 @@
sc->mfi_comms->hw_ci = ci;
- /* Give defered I/O a chance to run */
- if (sc->mfi_flags & MFI_FLAGS_QFRZN)
- sc->mfi_flags &= ~MFI_FLAGS_QFRZN;
+ /* Give deferred I/O a chance to run */
mfi_startio(sc);
mtx_unlock(&sc->mfi_io_lock);
@@ -2275,6 +2273,10 @@
else
mfi_send_frame(sc, cm);
+ if (sc->mfi_flags & MFI_FLAGS_QFRZN) {
+ sc->mfi_flags &= ~MFI_FLAGS_QFRZN;
+ mfi_startio(sc);
+ }
return;
}
More information about the p4-projects
mailing list