svn commit: r207543 - head/sys/dev/mpt

Matt Jacob mjacob at FreeBSD.org
Sun May 2 22:48:28 UTC 2010


Author: mjacob
Date: Sun May  2 22:48:27 2010
New Revision: 207543
URL: http://svn.freebsd.org/changeset/base/207543

Log:
  Print IR_RESYNC updates informatively.
  
  Obtained from:	pluknet
  MFC after:	1 week

Modified:
  head/sys/dev/mpt/mpt_cam.c

Modified: head/sys/dev/mpt/mpt_cam.c
==============================================================================
--- head/sys/dev/mpt/mpt_cam.c	Sun May  2 21:11:47 2010	(r207542)
+++ head/sys/dev/mpt/mpt_cam.c	Sun May  2 22:48:27 2010	(r207543)
@@ -2575,6 +2575,10 @@ mpt_cam_event(struct mpt_softc *mpt, req
 		CAMLOCK_2_MPTLOCK(mpt);
 		break;
 	}
+	case MPI_EVENT_IR_RESYNC_UPDATE:
+		mpt_prt(mpt, "IR resync update %d completed\n",
+		    (data0 >> 16) & 0xff);
+		break;
 	case MPI_EVENT_EVENT_CHANGE:
 	case MPI_EVENT_INTEGRATED_RAID:
 	case MPI_EVENT_SAS_DEVICE_STATUS_CHANGE:


More information about the svn-src-head mailing list