svn commit: r224328 - stable/7/sys/dev/mpt

Marius Strobl marius at FreeBSD.org
Mon Jul 25 16:14:37 UTC 2011


Author: marius
Date: Mon Jul 25 16:14:36 2011
New Revision: 224328
URL: http://svn.freebsd.org/changeset/base/224328

Log:
  MFC: r207543
  
  Print IR_RESYNC updates informatively.
  
  Obtained from:	pluknet

Modified:
  stable/7/sys/dev/mpt/mpt_cam.c
Directory Properties:
  stable/7/sys/   (props changed)
  stable/7/sys/cddl/contrib/opensolaris/   (props changed)
  stable/7/sys/contrib/dev/acpica/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)

Modified: stable/7/sys/dev/mpt/mpt_cam.c
==============================================================================
--- stable/7/sys/dev/mpt/mpt_cam.c	Mon Jul 25 16:11:52 2011	(r224327)
+++ stable/7/sys/dev/mpt/mpt_cam.c	Mon Jul 25 16:14:36 2011	(r224328)
@@ -2574,6 +2574,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-all mailing list