Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 16 Aug 2012 14:08:44 GMT
From:      John Baldwin <jhb@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 216005 for review
Message-ID:  <201208161408.q7GE8iRC086677@skunkworks.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://p4web.freebsd.org/@@216005?ac=10

Change 216005 by jhb@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;
 }
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201208161408.q7GE8iRC086677>