svn commit: r345482 - head/sys/dev/mps

Scott Long scottl at FreeBSD.org
Sun Mar 24 19:29:31 UTC 2019


Author: scottl
Date: Sun Mar 24 19:29:30 2019
New Revision: 345482
URL: https://svnweb.freebsd.org/changeset/base/345482

Log:
  Fix a transposition error from the previous commit

Modified:
  head/sys/dev/mps/mps.c

Modified: head/sys/dev/mps/mps.c
==============================================================================
--- head/sys/dev/mps/mps.c	Sun Mar 24 19:27:03 2019	(r345481)
+++ head/sys/dev/mps/mps.c	Sun Mar 24 19:29:30 2019	(r345482)
@@ -2481,7 +2481,7 @@ mps_intr_locked(void *data)
 			} else {
 				cm = &sc->commands[
 				    le16toh(desc->AddressReply.SMID)];
-				if (cm->cm_state != MPS_MPS_STATE_TIMEDOUT)
+				if (cm->cm_state != MPS_CM_STATE_TIMEDOUT)
 					cm->cm_state = MPS_CM_STATE_BUSY;
 				cm->cm_reply = reply;
 				cm->cm_reply_data = le32toh(


More information about the svn-src-head mailing list